mirror of
https://github.com/soimort/you-get.git
synced 2025-02-11 20:52:31 +03:00
19 lines
371 B
Python
19 lines
371 B
Python
![]() |
#!/usr/bin/env python
|
||
|
# This file is Python 2 compliant.
|
||
|
|
||
|
import sys
|
||
|
|
||
|
if sys.version_info[0] == 3:
|
||
|
#from .extractor import Extractor, VideoExtractor
|
||
|
#from .util import log
|
||
|
|
||
|
from .__main__ import *
|
||
|
|
||
|
#from .common import *
|
||
|
#from .version import *
|
||
|
#from .cli_wrapper import *
|
||
|
#from .extractor import *
|
||
|
else:
|
||
|
# Don't import anything.
|
||
|
pass
|