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