OXIESEC PANEL
- Current Dir:
/
/
snap
/
certbot
/
4737
/
lib
/
python3.12
/
site-packages
/
charset_normalizer
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
06/12/2025 06:19:50 PM
rwxr-xr-x
📄
__init__.py
1.55 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
__main__.py
109 bytes
06/12/2025 06:19:38 PM
rw-r--r--
📁
__pycache__
-
06/12/2025 06:19:48 PM
rwxr-xr-x
📄
api.py
22.09 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
cd.py
12.23 KB
06/12/2025 06:19:38 PM
rw-r--r--
📁
cli
-
06/12/2025 06:19:48 PM
rwxr-xr-x
📄
constant.py
41.71 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
legacy.py
2.23 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
md.cpython-312-x86_64-linux-gnu.so
20.79 KB
06/12/2025 06:19:50 PM
rwxr-xr-x
📄
md.py
19.67 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
md__mypyc.cpython-312-x86_64-linux-gnu.so
292.48 KB
06/12/2025 06:19:50 PM
rwxr-xr-x
📄
models.py
12.1 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
py.typed
0 bytes
06/12/2025 06:19:38 PM
rw-r--r--
📄
utils.py
11.88 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
version.py
115 bytes
06/12/2025 06:19:38 PM
rw-r--r--
Editing: __init__.py
Close
""" 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())