]> jfr.im git - yt-dlp.git/blame - yt_dlp/compat/_deprecated.py
[compat] Remove more functions
[yt-dlp.git] / yt_dlp / compat / _deprecated.py
CommitLineData
77f90330 1"""Deprecated - New code should avoid these"""
2
3import base64
ac668111 4import urllib.error
5import urllib.parse
6
7compat_str = str
77f90330 8
9compat_b64decode = base64.b64decode
ac668111 10
77f90330 11compat_HTTPError = urllib.error.HTTPError
ac668111 12compat_urlparse = urllib.parse
77f90330 13compat_parse_qs = urllib.parse.parse_qs
77f90330 14compat_urllib_parse_unquote = urllib.parse.unquote
77f90330 15compat_urllib_parse_urlencode = urllib.parse.urlencode
16compat_urllib_parse_urlparse = urllib.parse.urlparse