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