cli_wrapper

This commit is contained in:
Mort Yao 2013-09-11 13:50:39 +02:00
parent d1d02fe7ae
commit 610365a37c
15 changed files with 11 additions and 3 deletions

View File

@ -3,8 +3,5 @@
from .common import *
from .version import *
# Easy import
#from .cli_wrapper.converter import *
#from .cli_wrapper.player import *
from .cli_wrapper import *
from .extractor import *

View File

View File

@ -0,0 +1,3 @@
#!/usr/bin/env python
from .mplayer import *

View File

@ -0,0 +1,7 @@
#!/usr/bin/env python
def main():
script_main('you-get', any_download, any_download_playlist)
if __name__ == "__main__":
main()

View File

@ -0,0 +1 @@
#!/usr/bin/env python

View File