Skip to main content

libguess enables finding out in what encoding some text is for given language. This library is especially useful for short text strings that themselves don’t carry reliable encoding information, like ID3 tags in MP3 files. For example we can encode the same Japanese string in 3 different encodings (UTF-8, SHIFT-JIS, EUC-JP) and libguess will hopefully guess the encoding correctly just by looking at the first few bytes of the given string.

You can also use this as a regular command line program by giving region as the first parameter and possible target files after that:

Usage: python -m guess REGION [INPUT_FILE]

If input file name is not given, this program reads from the standard input.

Functions

determine_encoding(in_string, region)

Determines encoding of a string for the given language region.

Arguments:
in_string – a raw byte string for which encoding needs to be guessed.
region – one of the REGION_* constants for which encoding is guessed.
Returns:
String value indicating the guessed encoding of in_string argument for given region or None if error happened.

As an usage example we might see what happens when given Japanese text in 2 different encodings:

>>> import guess
>>> guess.determine_encoding(u'\u3042'.encode('euc-jp'), guess.REGION_JP)
'EUC-JP'
>>> guess.determine_encoding(u'\u3042'.encode('utf-8'), guess.REGION_JP)
'UTF-8'

The output string of this function can be given directly to iconv_open() C function and the resulting names should be compatible with the encoding string of str.decode() function:

>>> encoded_value = u'\u3042'.encode('shift-jis')
>>> encoding = guess.determine_encoding(encoded_value, guess.REGION_JP)
>>> encoding
'SJIS'
>>> encoded_value.decode(encoding)
u'\u3042'

In case the given region name is invalid or the underlying libguess_determine_encoding() call fails for any other reason, None value is returned:

>>> encoding = guess.determine_encoding("asdf", "UNKNOWN")
>>> encoding is None
True

Use REGION_* constants for region names.

validate_utf8(in_string)

Checks if the given string is a valid UTF-8 byte sequence.

Arguments:
in_string – a raw byte string to be inspected for UTF-8 validity.
Return value:
True if given string is a valid UTF-8 byte sequence, False otherwise.

This function is included here for the completeness with libguess interface. It gives more precise results for UTF-8 validity than for example functions in glib.

>>> import guess
>>> guess.validate_utf8(u'\u3042'.encode('EUC-JP'))
False
>>> guess.validate_utf8(u'\u3042'.encode('UTF-8'))
True

Region names

REGION_AR = ‘arabic’
REGION_BL = ‘baltic’
REGION_CN = ‘chinese’
REGION_GR = ‘greek’
REGION_HW = ‘hebrew’
REGION_JP = ‘japanese’
REGION_KR = ‘korean’
REGION_PL = ‘polish’
REGION_RU = ‘russian’
REGION_TR = ‘turkish’
REGION_TW = ‘taiwanese’

Release files for python-libguess 1.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for python-libguess 1.1
File Size Uploaded
python-libguess-1.1.tar.gz 4.1 kB Details

Release files / python-libguess-1.1.tar.gz

Download URL python-libguess-1.1.tar.gz
Size 4.1 kB
Tags Source
SHA-256 checksum
How to use checksums
4359f6eb30782d9f27dde37eafc9520c5b1be97184664b61278ae786a0c6bed9
BLAKE2b-256 checksum
How to use checksums
5a9c6881c04d966afde868871ed5673bcb8d4bd2b129d88217800d61317661c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

1.1 This release

1 release file

1.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page