Text language detection basic on trigrams.
Project description
Pyfranc
Text language detection basic on trigrams. Support 414 language from franc-all
Install
This package is tested in Python 3.8, but should work on the whole 3rd revision of Python.
pip:
pip install pyfranc
Use
How library
from pyfranc import franc
franc.lang_detect('Alle menslike wesens word vry')[0][0] # 'afr'
franc.lang_detect('এটি একটি ভাষা একক IBM স্ক্রিপ্ট')[0][0] # 'ben'
franc.lang_detect('Alle menneske er fødde til fridom')[0][0] # 'nno'
franc.lang_detect('')[0][0] # 'und'
# You can change what’s too short (default: 10):
franc.lang_detect('the')[0][0] # 'und'
franc.lang_detect('the', minlength=3)[0][0] # 'sco'
[0][0] has taken first value (iso code lang) in first element in output array.
whitelist
franc.lang_detect('Considerando ser essencial que os direitos humanos', whitelist = ['por', 'spa'])
# [['por', 1], ['spa', 0.6034146900423971]]
blacklist
franc.lang_detect('Considerando ser essencial que os direitos humanos', blacklist = ['src', 'glg'])
#[['por', 1],
# ['ina', 0.6211756617394293],
# ['spa', 0.6034146900423971],
# ['ast', 0.5628509224246592],
# ['oci', 0.5583820327718574],
# ... 317 more items]
How CLI
usage: pyfranc_cli [-h] [-v] [-s STRING] [-t TOP] [-m MINLENGTH] [-w [WHITELIST [WHITELIST ...]]]
[-b [BLACKLIST [BLACKLIST ...]]] [-a] [-f] [-p]
CLI to detect the language of text.
optional arguments:
-h, --help show this help message and exit
-v, --version Print version number.
-s STRING, --string STRING
Input string.
-t TOP, --top TOP Print top results.
-m MINLENGTH, --minlength MINLENGTH
Minimum string length to accept.
-w [WHITELIST [WHITELIST ...]], --whitelist [WHITELIST [WHITELIST ...]],
-o [WHITELIST [WHITELIST ...]], --only [WHITELIST [WHITELIST ...]]
Allow languages.
-b [BLACKLIST [BLACKLIST ...]], --blacklist [BLACKLIST [BLACKLIST ...]],
-i [BLACKLIST [BLACKLIST ...]], --ignore [BLACKLIST [BLACKLIST ...]]
Disallow languages.
-a, --all Output all raw results.
-f, --full Print full name of language (with lang code).
-p, --percentage Print relative match value (in percent).
usage:
# output language
$ pyfranc_cli -t 1 -s "Alle menslike wesens word vry"
# 'afr' : 1.0
# output language from stdin (expects utf8)
$ echo "এটি একটি ভাষা একক IBM স্ক্রিপ্ট" | pyfranc_cli -t 1 -s $0
# 'ben' : 1.0
# ignore certain languages
$ pyfranc_cli --blacklist por glg -s "O Brasil caiu 26 posições"
# 'vec' : 1.0
# output language from stdin with only
$ echo "Alle mennesker er født frie og" | pyfranc_cli -t 1 --whitelist nob dan -s $0
# 'nob' : 1.0'
# output all results in raw-list format
$ pyfranc_cli --all -s "Considerando ser essencial que os direitos humanos"
# [['por', 1.0], ['glg', 0.771284519307895], ... 320 more items]
# display the result language name
$ pyfranc_cli --full -t 1 -s "Alle menslike wesens word vry"
# Afrikaans (afr) : 1.0
# output result with relative percentage of value
$ pyfranc_cli -t 5 --percentage -s "Considerando ser essencial que os direitos humanos"
# por : 28%
# glg : 22%
# ina : 17%
# spa : 17%
# ast : 16%
Derivation
Pyfranc is a outright port from Franc (JavaScript, MIT), trigram-utils (JavaScript, MIT), collapse-white-space (JavaScript, MIT), and n-gram (JavaScript, MIT). All this by Titus Wormer.
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyfranc-0.2.3.tar.gz.
File metadata
- Download URL: pyfranc-0.2.3.tar.gz
- Upload date:
- Size: 384.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f979dd5f3bea7e2fe1dfa25a6ea412ae8d6d54b9dad17d2397aaaef5881c2f8
|
|
| MD5 |
692a2a467c115350edd37ae05a4a299d
|
|
| BLAKE2b-256 |
de9b3ab6dbfc7782954c1b55f7ee1c098c4a3663e2116d4c5e01f45eac3a9dc9
|
File details
Details for the file pyfranc-0.2.3-py3-none-any.whl.
File metadata
- Download URL: pyfranc-0.2.3-py3-none-any.whl
- Upload date:
- Size: 383.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aff9063393f8434ec16a94382d1ae2fbe5a112aa30fcb98c673aa50d3ec75fbf
|
|
| MD5 |
46d4fa704b9b182f382f276e959106af
|
|
| BLAKE2b-256 |
b1506af5aa8e850a89f046d59161e996ca2ae0168d98818c687448355eaef0da
|