]> jfr.im git - yt-dlp.git/blame - yt_dlp/compat/__init__.py
[compat] Ensure submodules are imported correctly
[yt-dlp.git] / yt_dlp / compat / __init__.py
CommitLineData
77f90330 1import os
77f90330 2import sys
77f90330 3import xml.etree.ElementTree as etree
4
9196cbfe 5from .compat_utils import passthrough_module
6
a250b247 7passthrough_module(__name__, '._deprecated')
8del passthrough_module
77f90330 9
10
11# HTMLParseError has been deprecated in Python 3.3 and removed in
12# Python 3.5. Introducing dummy exception for Python >3.5 for compatible
13# and uniform cross-version exception handling
0d2a0eca 14class compat_HTMLParseError(ValueError):
77f90330 15 pass
16
17
18class _TreeBuilder(etree.TreeBuilder):
19 def doctype(self, name, pubid, system):
20 pass
21
22
23def compat_etree_fromstring(text):
24 return etree.XML(text, parser=etree.XMLParser(target=_TreeBuilder()))
25
26
27compat_os_name = os._name if os.name == 'java' else os.name
28
29
30if compat_os_name == 'nt':
31 def compat_shlex_quote(s):
6929b41a 32 import re
77f90330 33 return s if re.match(r'^[-_\w./]+$', s) else '"%s"' % s.replace('"', '\\"')
34else:
35 from shlex import quote as compat_shlex_quote # noqa: F401
36
37
38def compat_ord(c):
39 return c if isinstance(c, int) else ord(c)
40
41
77f90330 42if compat_os_name == 'nt' and sys.version_info < (3, 8):
43 # os.path.realpath on Windows does not follow symbolic links
44 # prior to Python 3.8 (see https://bugs.python.org/issue9949)
45 def compat_realpath(path):
46 while os.path.islink(path):
47 path = os.path.abspath(os.readlink(path))
57e0f077 48 return os.path.realpath(path)
77f90330 49else:
50 compat_realpath = os.path.realpath
51
52
77f90330 53# Python 3.8+ does not honor %HOME% on windows, but this breaks compatibility with youtube-dl
54# See https://github.com/yt-dlp/yt-dlp/issues/792
55# https://docs.python.org/3/library/os.path.html#os.path.expanduser
56if compat_os_name in ('nt', 'ce'):
57 def compat_expanduser(path):
58 HOME = os.environ.get('HOME')
59 if not HOME:
60 return os.path.expanduser(path)
61 elif not path.startswith('~'):
62 return path
63 i = path.replace('\\', '/', 1).find('/') # ~user
64 if i < 0:
65 i = len(path)
66 userhome = os.path.join(os.path.dirname(HOME), path[1:i]) if i > 1 else HOME
67 return userhome + path[i:]
68else:
69 compat_expanduser = os.path.expanduser
227bf1a3 70
71
72def urllib_req_to_req(urllib_request):
73 """Convert urllib Request to a networking Request"""
74 from ..networking import Request
75 from ..utils.networking import HTTPHeaderDict
76 return Request(
77 urllib_request.get_full_url(), data=urllib_request.data, method=urllib_request.get_method(),
78 headers=HTTPHeaderDict(urllib_request.headers, urllib_request.unredirected_hdrs),
79 extensions={'timeout': urllib_request.timeout} if hasattr(urllib_request, 'timeout') else None)