]> jfr.im git - yt-dlp.git/blame - yt_dlp/compat/_legacy.py
[version] update
[yt-dlp.git] / yt_dlp / compat / _legacy.py
CommitLineData
77f90330 1""" Do not use! """
2
3import collections
4import ctypes
ac668111 5import getpass
6import html.entities
7import html.parser
77f90330 8import http.client
9import http.cookiejar
10import http.cookies
11import http.server
ac668111 12import itertools
13import os
77f90330 14import shlex
ac668111 15import shutil
77f90330 16import socket
17import struct
ac668111 18import tokenize
19import urllib.error
20import urllib.parse
21import urllib.request
77f90330 22import xml.etree.ElementTree as etree
23from subprocess import DEVNULL
24
54007a45 25from .compat_utils import passthrough_module # isort: split
77f90330 26from .asyncio import run as compat_asyncio_run # noqa: F401
27from .re import Pattern as compat_Pattern # noqa: F401
28from .re import match as compat_Match # noqa: F401
9b8ee23b 29from ..dependencies import Cryptodome_AES as compat_pycrypto_AES # noqa: F401
30from ..dependencies import brotli as compat_brotli # noqa: F401
31from ..dependencies import websockets as compat_websockets # noqa: F401
77f90330 32
3c5386cd 33passthrough_module(__name__, '...utils', ('WINDOWS_VT_MODE', 'windows_enable_vt_mode'))
34
35
77f90330 36# compat_ctypes_WINFUNCTYPE = ctypes.WINFUNCTYPE
37# will not work since ctypes.WINFUNCTYPE does not exist in UNIX machines
38def compat_ctypes_WINFUNCTYPE(*args, **kwargs):
39 return ctypes.WINFUNCTYPE(*args, **kwargs)
40
41
ac668111 42def compat_setenv(key, value, env=os.environ):
43 env[key] = value
44
45
77f90330 46compat_basestring = str
ae61d108 47compat_chr = chr
77f90330 48compat_collections_abc = collections.abc
ae61d108 49compat_cookiejar = http.cookiejar
50compat_cookiejar_Cookie = http.cookiejar.Cookie
77f90330 51compat_cookies = http.cookies
ae61d108 52compat_cookies_SimpleCookie = http.cookies.SimpleCookie
77f90330 53compat_etree_Element = etree.Element
54compat_etree_register_namespace = etree.register_namespace
55compat_filter = filter
ae61d108 56compat_get_terminal_size = shutil.get_terminal_size
ac668111 57compat_getenv = os.getenv
ae61d108 58compat_getpass = getpass.getpass
59compat_html_entities = html.entities
60compat_html_entities_html5 = html.entities.html5
61compat_HTMLParser = html.parser.HTMLParser
62compat_http_client = http.client
63compat_http_server = http.server
77f90330 64compat_input = input
65compat_integer_types = (int, )
ae61d108 66compat_itertools_count = itertools.count
77f90330 67compat_kwargs = lambda kwargs: kwargs
68compat_map = map
69compat_numeric_types = (int, float, complex)
70compat_print = print
71compat_shlex_split = shlex.split
72compat_socket_create_connection = socket.create_connection
73compat_Struct = struct.Struct
ae61d108 74compat_struct_pack = struct.pack
75compat_struct_unpack = struct.unpack
77f90330 76compat_subprocess_get_DEVNULL = lambda: DEVNULL
ae61d108 77compat_tokenize_tokenize = tokenize.tokenize
78compat_urllib_error = urllib.error
79compat_urllib_parse = urllib.parse
77f90330 80compat_urllib_parse_quote = urllib.parse.quote
81compat_urllib_parse_quote_plus = urllib.parse.quote_plus
ae61d108 82compat_urllib_parse_unquote_plus = urllib.parse.unquote_plus
77f90330 83compat_urllib_parse_unquote_to_bytes = urllib.parse.unquote_to_bytes
84compat_urllib_parse_urlunparse = urllib.parse.urlunparse
ac668111 85compat_urllib_request = urllib.request
ae61d108 86compat_urllib_request_DataHandler = urllib.request.DataHandler
77f90330 87compat_urllib_response = urllib.response
88compat_urlretrieve = urllib.request.urlretrieve
89compat_xml_parse_error = etree.ParseError
90compat_xpath = lambda xpath: xpath
91compat_zip = zip
92workaround_optparse_bug9161 = lambda: None