opt
/
hc_python
/
lib
/
python3.12
/
site-packages
/
charset_normalizer
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
[DIR] __pycache__
N/A
[DIR] cli
N/A
__init__.py
1.55 KB
Rename
Delete
__main__.py
109 bytes
Rename
Delete
api.py
22.09 KB
Rename
Delete
cd.py
12.23 KB
Rename
Delete
constant.py
39.53 KB
Rename
Delete
legacy.py
2.27 KB
Rename
Delete
md.cpython-312-x86_64-linux-gnu.so
15.69 KB
Rename
Delete
md.py
19.57 KB
Rename
Delete
md__mypyc.cpython-312-x86_64-linux-gnu.so
274.32 KB
Rename
Delete
models.py
12.10 KB
Rename
Delete
py.typed
0 bytes
Rename
Delete
utils.py
11.72 KB
Rename
Delete
version.py
115 bytes
Rename
Delete
""" Charset-Normalizer ~~~~~~~~~~~~~~ The Real First Universal Charset Detector. A library that helps you read text from an unknown charset encoding. Motivated by chardet, This package is trying to resolve the issue by taking a new approach. All IANA character set names for which the Python core library provides codecs are supported. Basic usage: >>> from charset_normalizer import from_bytes >>> results = from_bytes('Bсеки човек има право на образование. Oбразованието!'.encode('utf_8')) >>> best_guess = results.best() >>> str(best_guess) 'Bсеки човек има право на образование. Oбразованието!' Others methods and usages are available - see the full documentation at <https://github.com/Ousret/charset_normalizer>. :copyright: (c) 2021 by Ahmed TAHRI :license: MIT, see LICENSE for more details. """ from __future__ import annotations import logging from .api import from_bytes, from_fp, from_path, is_binary from .legacy import detect from .models import CharsetMatch, CharsetMatches from .utils import set_logging_handler from .version import VERSION, __version__ __all__ = ( "from_fp", "from_path", "from_bytes", "is_binary", "detect", "CharsetMatch", "CharsetMatches", "__version__", "VERSION", "set_logging_handler", ) # Attach a NullHandler to the top level logger by default # https://docs.python.org/3.3/howto/logging.html#configuring-logging-for-a-library logging.getLogger("charset_normalizer").addHandler(logging.NullHandler())
Save