Skip to main content

CFFI bindings around Google Chromium's embedded compact language detection library (CLD2)

Project description

CFFI bindings for CLD2


Latest version released on PyPi Build status Windows Build Status:: Coverage Code Health


This package contains the CLD (Compact Language Detection) library as maintained by Dick Sites (https://code.google.com/p/cld2/). The first fork was done at revision r161. It also contains python bindings that were originally created by Mike McCandless. The bindings have gone through several hands, with the latest changes being made to rework the bindings for CFFI.

These bindings are identical in API to the original cld2 bindings, and as a result can be used as a drop in replacement.

The LICENSE is the same as Chromium’s LICENSE and is included in the LICENSE file for reference.

Installing

Should be as simple as

$ pip install cld2-cffi

Development Version

The latest development version can be installed directly from GitHub:

$ pip install --upgrade 'git+https://github.com/GregBowyer/cld2-cffi.git'

Usage

import cld2

isReliable, textBytesFound, details = cld2.detect("This is my sample text")
print('  reliable: %s' % (isReliable != 0))
print('  textBytes: %s' % textBytesFound)
print('  details: %s' % str(details))

# The output looks like so:
#  reliable: True
#  textBytes: 24
#  details: (('ENGLISH', 'en', 95, 1736.0), ('Unknown', 'un', 0, 0.0), ('Unknown', 'un', 0, 0.0))

Documentation

First, you must get your content (plain text or HTML) encoded into UTF8 bytes. Then, detect like this:

isReliable, textBytesFound, details = cld2.detect(bytes)
isReliable

is True if the top language is much better than 2nd best language.

textBytesFound

tells you how many actual bytes CLD analyzed (after removing HTML tags, collapsing areas of too-many-spaces, etc.).

details

has an entry per top 3 languages that matched, that includes the percent confidence of the match as well as a separate normalized score.

The module exports these global constants:

cld2.ENCODINGS

list of the encoding names CLD recognizes (if you provide hintEncoding, it must be one of these names).

cld2.LANGUAGES

list of languages and their codes (if you provide hintLanguageCode, it must be one of the codes from these codes).

cld2.EXTERNAL_LANGUAGES

list of external languages and their codes. Note that external languages cannot be hinted, but may be matched if you pass includeExtendedLanguages=True (the default).

cld2.DETECTED_LANGUAGES

list of all detectable languages, as best I can determine (this was reverse engineered from a unit test, ie it contains a language X if that language was tested and passes for at least one example text).

Authors

Please see AUTHORS.

Reporting bugs

Please see BUG_REPORTS.

Contribute

Please see CONTRIBUTING.

Licence

Please see LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cld2-cffi-0.1.4.tar.gz (17.6 MB view details)

Uploaded Source

File details

Details for the file cld2-cffi-0.1.4.tar.gz.

File metadata

  • Download URL: cld2-cffi-0.1.4.tar.gz
  • Upload date:
  • Size: 17.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for cld2-cffi-0.1.4.tar.gz
Algorithm Hash digest
SHA256 3a29948364ed1e426c5bf542832eee208b1c70c0ad512b1a99bec0e6486f6c67
MD5 3c2701b856b0ac23b5f4ac9a81db99c9
BLAKE2b-256 526d044789e730141bcda2a7368836f714684a7d13bd44a2a33b387cb31b4335

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page