2022-12-02 20:00:26 -06:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
# Execute with
|
2025-05-02 16:11:08 -05:00
|
|
|
# $ python3 -m yt_dlp
|
2022-12-02 20:00:26 -06:00
|
|
|
|
|
|
|
import sys
|
|
|
|
|
2023-02-20 19:18:45 -06:00
|
|
|
if __package__ is None and not getattr(sys, 'frozen', False):
|
2022-12-02 20:00:26 -06:00
|
|
|
# direct call of __main__.py
|
|
|
|
import os.path
|
|
|
|
path = os.path.realpath(os.path.abspath(__file__))
|
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(path)))
|
|
|
|
|
|
|
|
import yt_dlp
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
yt_dlp.main()
|