]> jfr.im git - yt-dlp.git/blame - yt_dlp/compat/__init__.py
[version] update
[yt-dlp.git] / yt_dlp / compat / __init__.py
CommitLineData
77f90330 1import os
77f90330 2import sys
9196cbfe 3import warnings
77f90330 4import xml.etree.ElementTree as etree
5
6from . import re
7from ._deprecated import * # noqa: F401, F403
9196cbfe 8from .compat_utils import passthrough_module
9
9196cbfe 10# XXX: Implement this the same way as other DeprecationWarnings without circular import
f5e438a9 11passthrough_module(__name__, '._legacy', callback=lambda attr: warnings.warn(
12 DeprecationWarning(f'{__name__}.{attr} is deprecated'), stacklevel=2))
77f90330 13
14
15# HTMLParseError has been deprecated in Python 3.3 and removed in
16# Python 3.5. Introducing dummy exception for Python >3.5 for compatible
17# and uniform cross-version exception handling
18class compat_HTMLParseError(Exception):
19 pass
20
21
22class _TreeBuilder(etree.TreeBuilder):
23 def doctype(self, name, pubid, system):
24 pass
25
26
27def compat_etree_fromstring(text):
28 return etree.XML(text, parser=etree.XMLParser(target=_TreeBuilder()))
29
30
31compat_os_name = os._name if os.name == 'java' else os.name
32
33
34if compat_os_name == 'nt':
35 def compat_shlex_quote(s):
36 return s if re.match(r'^[-_\w./]+$', s) else '"%s"' % s.replace('"', '\\"')
37else:
38 from shlex import quote as compat_shlex_quote # noqa: F401
39
40
41def compat_ord(c):
42 return c if isinstance(c, int) else ord(c)
43
44
77f90330 45if compat_os_name == 'nt' and sys.version_info < (3, 8):
46 # os.path.realpath on Windows does not follow symbolic links
47 # prior to Python 3.8 (see https://bugs.python.org/issue9949)
48 def compat_realpath(path):
49 while os.path.islink(path):
50 path = os.path.abspath(os.readlink(path))
57e0f077 51 return os.path.realpath(path)
77f90330 52else:
53 compat_realpath = os.path.realpath
54
55
77f90330 56# Python 3.8+ does not honor %HOME% on windows, but this breaks compatibility with youtube-dl
57# See https://github.com/yt-dlp/yt-dlp/issues/792
58# https://docs.python.org/3/library/os.path.html#os.path.expanduser
59if compat_os_name in ('nt', 'ce'):
60 def compat_expanduser(path):
61 HOME = os.environ.get('HOME')
62 if not HOME:
63 return os.path.expanduser(path)
64 elif not path.startswith('~'):
65 return path
66 i = path.replace('\\', '/', 1).find('/') # ~user
67 if i < 0:
68 i = len(path)
69 userhome = os.path.join(os.path.dirname(HOME), path[1:i]) if i > 1 else HOME
70 return userhome + path[i:]
71else:
72 compat_expanduser = os.path.expanduser
f5e438a9 73
74
75# NB: Add modules that are imported dynamically here so that PyInstaller can find them
76# See https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/438
77if False:
78 from . import _legacy # noqa: F401