]> jfr.im git - yt-dlp.git/blame - pyinst.py
[ie/youtube] Extract upload timestamp if available (#9856)
[yt-dlp.git] / pyinst.py
CommitLineData
0abf2f1f 1#!/usr/bin/env python3
2
3# Allow execution from anywhere
4import os
5import sys
6
7sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
8
9import warnings
10
11from bundle.pyinstaller import main
12
13warnings.warn(DeprecationWarning('`pyinst.py` is deprecated and will be removed in a future version. '
14 'Use `bundle.pyinstaller` instead'))
15
16if __name__ == '__main__':
17 main()