]> jfr.im git - yt-dlp.git/blame - youtube_dlc/__main__.py
[skip travis] renaming
[yt-dlp.git] / youtube_dlc / __main__.py
CommitLineData
d77c3dfd 1#!/usr/bin/env python
dcddc10a 2from __future__ import unicode_literals
f1cb5bca 3
743b28ce 4# Execute with
cefecac1
U
5# $ python youtube_dlc/__main__.py (2.6+)
6# $ python -m youtube_dlc (2.7+)
743b28ce
PH
7
8import sys
9
611c1dd9 10if __package__ is None and not hasattr(sys, 'frozen'):
5a304a76 11 # direct call of __main__.py
743b28ce 12 import os.path
87439741 13 path = os.path.realpath(os.path.abspath(__file__))
95240b80 14 sys.path.insert(0, os.path.dirname(os.path.dirname(path)))
d77c3dfd 15
cefecac1 16import youtube_dlc
d77c3dfd
FV
17
18if __name__ == '__main__':
cefecac1 19 youtube_dlc.main()