2012-03-24 20:07:37 -05:00
|
|
|
#!/usr/bin/env python
|
2014-11-26 13:01:20 -06:00
|
|
|
from __future__ import unicode_literals
|
2012-11-27 20:55:35 -06:00
|
|
|
|
2012-11-29 08:11:24 -06:00
|
|
|
# Execute with
|
|
|
|
# $ python youtube_dl/__main__.py (2.6+)
|
|
|
|
# $ python -m youtube_dl (2.7+)
|
|
|
|
|
|
|
|
import sys
|
|
|
|
|
2012-12-07 05:04:52 -06:00
|
|
|
if __package__ is None and not hasattr(sys, "frozen"):
|
2012-12-07 17:48:07 -06:00
|
|
|
# direct call of __main__.py
|
2012-11-29 08:11:24 -06:00
|
|
|
import os.path
|
2013-04-10 23:33:18 -05:00
|
|
|
path = os.path.realpath(os.path.abspath(__file__))
|
2015-09-15 08:30:24 -05:00
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(path)))
|
2012-03-24 20:07:37 -05:00
|
|
|
|
2012-11-27 20:34:40 -06:00
|
|
|
import youtube_dl
|
2012-03-24 20:07:37 -05:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2012-11-27 20:34:40 -06:00
|
|
|
youtube_dl.main()
|