mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 20:17:22 +01:00
Allow youtube_dl/__main__.py to be called directly
This commit is contained in:
parent
8176041605
commit
743b28ce11
@ -1,6 +1,14 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
# Execute with python -m youtube_dl
|
||||
# Execute with
|
||||
# $ python youtube_dl/__main__.py (2.6+)
|
||||
# $ python -m youtube_dl (2.7+)
|
||||
|
||||
import sys
|
||||
|
||||
if __package__ is None:
|
||||
import os.path
|
||||
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
||||
|
||||
import youtube_dl
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user