Skip to content

jonatasleon/kr-cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Killers Roms CLI

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.

Demo usage of kr-cli

Installation

pip install kr-cli

Usage example

consoles command

List available consoles

kr consoles

search command

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

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

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b feature/fooBar)
  3. Commit your changes (git commit -am 'Add some fooBar')
  4. Push to the branch (git push origin feature/fooBar)
  5. Create a new Pull Request