X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=youtube_dl%2F__init__.py;h=4aa7fba6ab2e1fcd284f70c0a3e8e8052987d215;hb=0217c783771a6c8543046869e934f4ced56febc7;hp=4c21188a9d8cb12b49d06adfd0c468a8c2b5c19d;hpb=e4a8eae701f22395dae607ed000d39f7a57e80a0;p=youtube-dl.git diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index 4c21188a9..4aa7fba6a 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -38,7 +38,7 @@ from .update import update_self from .downloader import ( FileDownloader, ) -from .extractor import list_extractors +from .extractor import gen_extractors, list_extractors from .YoutubeDL import YoutubeDL @@ -363,3 +363,5 @@ def main(argv=None): sys.exit('ERROR: fixed output name but more than one file to download') except KeyboardInterrupt: sys.exit('\nERROR: Interrupted by user') + +__all__ = ['main', 'YoutubeDL', 'gen_extractors', 'list_extractors']