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