2021-06-03 11:43:42 +02:00
|
|
|
#!/usr/bin/env python3
|
2022-06-24 16:36:16 +05:30
|
|
|
|
2012-11-29 15:11:24 +01:00
|
|
|
# Execute with
|
2024-03-11 00:48:47 +05:30
|
|
|
# $ python3 -m yt_dlp
|
2012-11-29 15:11:24 +01:00
|
|
|
|
|
|
|
import sys
|
|
|
|
|
2022-11-11 08:43:08 +05:30
|
|
|
if __package__ is None and not getattr(sys, 'frozen', False):
|
2012-12-08 00:48:07 +01:00
|
|
|
# direct call of __main__.py
|
2012-11-29 15:11:24 +01:00
|
|
|
import os.path
|
2013-04-11 07:33:18 +03:00
|
|
|
path = os.path.realpath(os.path.abspath(__file__))
|
2015-09-15 21:30:24 +08:00
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(path)))
|
2012-03-25 03:07:37 +02:00
|
|
|
|
2021-02-24 15:45:56 -03:00
|
|
|
import yt_dlp
|
2012-03-25 03:07:37 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2021-02-24 15:45:56 -03:00
|
|
|
yt_dlp.main()
|