youtube-dl/youtube_dl/__main__.py

17 lines
357 B
Python
Raw Normal View History

#!/usr/bin/env python
# Execute with
# $ python youtube_dl/__main__.py (2.6+)
# $ python -m youtube_dl (2.7+)
import sys
if __package__ is None and not hasattr(sys, "frozen"):
import os.path
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
2012-11-28 02:34:40 +00:00
import youtube_dl
if __name__ == '__main__':
2012-11-28 02:34:40 +00:00
youtube_dl.main()