CLI tool to search and download roms from Killers Roms.
kr-cli
allows to search and download roms published by Killers Roms through command line interface.
pip install kr-cli
List available consoles
kr consoles
Basic usage
kr search sega-genesis sonic
Ordering
kr search sega-genesis sonic --order-by title --asc
Quiet mode shows only the link to rom's webpage
kr search sega-genesis sonic --quiet # or -q
download
command wait the rom's webpage as argument
kr download https://roms-download.com/roms/sega-genesis/sonic-knuckles-usa
It's possible combine download with search -q
command
kr search sega-genesis sonic -q | kr download
Defining output directory
kr search sega-genesis sonic -q | head -n 1 | kr download -d /tmp
- Fork it
- Create your feature branch (
git checkout -b feature/fooBar
) - Commit your changes (
git commit -am 'Add some fooBar'
) - Push to the branch (
git push origin feature/fooBar
) - Create a new Pull Request