usenetbinary-newsreaderquickboxtraktkodistabletvshowsqnaptautullifanartsickbeardtvseriesplexswizzinembyseedboxtvdbnzbgetsubtitlewebui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
492 B
16 lines
492 B
from .exceptions import CharacterEncodingOverride as CharacterEncodingOverride, CharacterEncodingUnknown as CharacterEncodingUnknown, NonXMLContentType as NonXMLContentType
|
|
from typing import Any
|
|
|
|
lazy_chardet_encoding: Any
|
|
bytes_: Any
|
|
unicode_: Any
|
|
EBCDIC_MARKER: bytes
|
|
UTF16BE_MARKER: bytes
|
|
UTF16LE_MARKER: bytes
|
|
UTF32BE_MARKER: bytes
|
|
UTF32LE_MARKER: bytes
|
|
ZERO_BYTES: str
|
|
RE_XML_DECLARATION: Any
|
|
RE_XML_PI_ENCODING: Any
|
|
|
|
def convert_to_utf8(http_headers: Any, data: Any, result: Any): ...
|
|
|