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