2012-03-24 19:07:37 -06:00
|
|
|
#!/usr/bin/env python
|
2012-11-27 19:55:35 -07:00
|
|
|
|
2012-11-29 07:11:24 -07:00
|
|
|
# Execute with
|
|
|
|
# $ python youtube_dl/__main__.py (2.6+)
|
|
|
|
# $ python -m youtube_dl (2.7+)
|
|
|
|
|
|
|
|
import sys
|
|
|
|
|
2012-12-07 04:04:52 -07:00
|
|
|
if __package__ is None and not hasattr(sys, "frozen"):
|
2012-11-29 07:11:24 -07:00
|
|
|
import os.path
|
|
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
2012-03-24 19:07:37 -06:00
|
|
|
|
2012-11-27 19:34:40 -07:00
|
|
|
import youtube_dl
|
2012-03-24 19:07:37 -06:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2012-11-27 19:34:40 -07:00
|
|
|
youtube_dl.main()
|