2012-03-25 01:07:37 +00:00
|
|
|
#!/usr/bin/env python
|
2014-11-26 19:01:20 +00:00
|
|
|
from __future__ import unicode_literals
|
2012-11-28 02:55:35 +00:00
|
|
|
|
2012-11-29 14:11:24 +00:00
|
|
|
# Execute with
|
2020-09-02 18:25:25 +00:00
|
|
|
# $ python youtube_dlc/__main__.py (2.6+)
|
|
|
|
# $ python -m youtube_dlc (2.7+)
|
2012-11-29 14:11:24 +00:00
|
|
|
|
|
|
|
import sys
|
|
|
|
|
2016-02-14 09:37:17 +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__))
|
2015-09-15 13:30:24 +00:00
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(path)))
|
2012-03-25 01:07:37 +00:00
|
|
|
|
2020-09-02 18:25:25 +00:00
|
|
|
import youtube_dlc
|
2012-03-25 01:07:37 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2020-09-02 18:25:25 +00:00
|
|
|
youtube_dlc.main()
|