PHP 8.2.30
Preview: __init__.py Size: 1.75 KB
/opt/cloudlinux/venv/lib64/python3.11/site-packages/charset_normalizer/__init__.py

# -*- coding: utf-8 -*-
"""
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.
"""
import logging

from .api import from_bytes, from_fp, from_path, normalize
from .legacy import (
    CharsetDetector,
    CharsetDoctor,
    CharsetNormalizerMatch,
    CharsetNormalizerMatches,
    detect,
)
from .models import CharsetMatch, CharsetMatches
from .utils import set_logging_handler
from .version import VERSION, __version__

__all__ = (
    "from_fp",
    "from_path",
    "from_bytes",
    "normalize",
    "detect",
    "CharsetMatch",
    "CharsetMatches",
    "CharsetNormalizerMatch",
    "CharsetNormalizerMatches",
    "CharsetDetector",
    "CharsetDoctor",
    "__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())

Directory Contents

Dirs: 3 × Files: 10

Name Size Perms Modified Actions
assets DIR
- drwxr-xr-x 2026-02-06 08:01:08
Edit Download
cli DIR
- drwxr-xr-x 2026-02-06 08:01:08
Edit Download
- drwxr-xr-x 2026-02-06 08:01:11
Edit Download
18.74 KB lrw-r--r-- 2026-01-20 13:01:48
Edit Download
10.56 KB lrw-r--r-- 2026-01-20 13:01:48
Edit Download
18.71 KB lrw-r--r-- 2026-01-20 13:01:48
Edit Download
3.30 KB lrw-r--r-- 2026-01-20 13:01:48
Edit Download
17.23 KB lrw-r--r-- 2026-01-20 13:01:48
Edit Download
12.86 KB lrw-r--r-- 2026-01-20 13:01:48
Edit Download
0 B lrw-r--r-- 2026-01-20 13:01:48
Edit Download
11.50 KB lrw-r--r-- 2026-01-20 13:01:48
Edit Download
79 B lrw-r--r-- 2026-01-20 13:01:48
Edit Download
1.75 KB lrw-r--r-- 2026-01-20 13:01:48
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).