__init__.py 494 B

12345678910111213141516
  1. from .search import search
  2. from .site import choose_site
  3. from .directory import directory
  4. from .help import help
  5. from .last import last
  6. from .quality import quality
  7. from .settings import settings
  8. from .spotify import spotify
  9. commands = [
  10. ('help', help, 'Display this list'),
  11. ('last', last, 'See the last search'),
  12. ('search', search, 'Search the selected site'),
  13. ('settings', settings, 'View/change settings'),
  14. ('spotify', spotify, 'Find music from your spotify profile')
  15. ]