2012-03-24 21:07:37 -04:00
|
|
|
#!/usr/bin/env python
|
2012-11-27 21:55:35 -05:00
|
|
|
|
2012-11-29 09:11:24 -05:00
|
|
|
# Execute with
|
|
|
|
# $ python youtube_dl/__main__.py (2.6+)
|
|
|
|
# $ python -m youtube_dl (2.7+)
|
|
|
|
|
|
|
|
import sys
|
|
|
|
|
2012-12-07 06:04:52 -05:00
|
|
|
if __package__ is None and not hasattr(sys, "frozen"):
|
2012-12-07 18:48:07 -05:00
|
|
|
# direct call of __main__.py
|
2012-11-29 09:11:24 -05:00
|
|
|
import os.path
|
2013-04-11 00:33:18 -04:00
|
|
|
path = os.path.realpath(os.path.abspath(__file__))
|
|
|
|
sys.path.append(os.path.dirname(os.path.dirname(path)))
|
2012-03-24 21:07:37 -04:00
|
|
|
|
2012-11-27 21:34:40 -05:00
|
|
|
import youtube_dl
|
2012-03-24 21:07:37 -04:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2012-11-27 21:34:40 -05:00
|
|
|
youtube_dl.main()
|