]> Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/__main__.py
d/control: Build-depend on flake8 and python3-nose.
[youtubedl] / youtube_dl / __main__.py
1 #!/usr/bin/env python
2 from __future__ import unicode_literals
3
4 # Execute with
5 # $ python youtube_dl/__main__.py (2.6+)
6 # $ python -m youtube_dl (2.7+)
7
8 import sys
9
10 if __package__ is None and not hasattr(sys, 'frozen'):
11 # direct call of __main__.py
12 import os.path
13 path = os.path.realpath(os.path.abspath(__file__))
14 sys.path.insert(0, os.path.dirname(os.path.dirname(path)))
15
16 import youtube_dl
17
18 if __name__ == '__main__':
19 youtube_dl.main()