| 12345678910111213141516 |
- from .search import search
- from .site import choose_site
- from .directory import directory
- from .help import help
- from .last import last
- from .quality import quality
- commands = [
- ('help', help, 'Display this list'),
- ('last', last, 'See the last search'),
- ('save', directory, 'Change the download directory'),
- ('search', search, 'Search the selected site'),
- ('sites', choose_site, 'Pick the site to search'),
- ('quality', quality, 'Set the minimal quality to download without confirmation'),
- #('quit', quit, 'Quit the program')
- ]
|