Skip to main content

Arabic language processing toolkit

Project description

example workflow example workflow PyPI version License

Arabic Natural Language Toolkit (ANLTK)

ANLTK is a set of Arabic natural language processing tools. developed with focus on performance.

ANLTK is a C++ library, with python bindings.

Installation

for python :

pip install anltk

Building

Note: Currently only tested on Linux, prebuilt python wheels are available for Linux, Windows, Macos on pypi

Dependencies:

  • utfcpp, automatically downloaded.
  • utf8proc, automatically downlaoded.
  • C++ Compiler that supports c++17.
  • Python3, meson, ninja
pip install meson
pip install ninja
git clone https://github.com/Abdullah-AlAttar/anltk.git \
    && cd anltk/ \
    && meson build --buildtype=release -Dbuild_tests=false \
    && cd build \
    && ninja \
    && cd ../ \
    && python3 setup.py install

Usage Examples:

C++ API :

#include "anltk/anltk.hpp"
#include <iostream>
#include <string>

int main()
{

    std::string ar_text = "أبجد هوز حطي كلمن سعفص قرشت ثخذ ضظغ";

    std::cout << anltk::transliterate(ar_text, anltk::CharMapping::AR2BW) << '\n';
    // >bjd hwz HTy klmn sEfS qr$t vx* DZg

    std::string text = "فَرَاشَةٌ مُلَوَّنَةٌ تَطِيْرُ في البُسْتَانِ، حُلْوَةٌ مُهَنْدَمَةٌ تُدْهِشُ الإِنْسَانَ.";

    std::cout << anltk::remove_tashkeel(text) << '\n';
    // فراشة ملونة تطير في البستان، حلوة مهندمة تدهش الإنسان.

    // Third paramters is a stop_list, charactres in this list won't be removed
    std::cout << anltk::remove_non_alpha(text, " ") << '\n';
    // فراشة ملونة تطير في البستان حلوة مهندمة تدهش الإنسان

    anltk::TafqitOptions opts;
    std::cout<< anltk::tafqit(15000120, opts) <<'\n';
    // خمسة عشر مليونًا ومائة وعشرون
}

Python API

import anltk


ar = "أبجد هوز حطي كلمن سعفص قرشت ثخذ ضظغ"
bw = anltk.transliterate(ar, anltk.AR2BW)
print(bw)
# >bjd hwz HTy klmn sEfS qr$t vx* DZg

print(anltk.remove_tashkeel("فَرَاشَةٌ مُلَوَّنَةٌ تَطِيْرُ في البُسْتَانِ، حُلْوَةٌ مُهَنْدَمَةٌ تُدْهِشُ الإِنْسَانَ."))

# فراشة ملونة تطير في البستان، حلوة مهندمة تدهش الإنسان.

print(anltk.tafqit(15000120))
# خمسة عشر مليونًا ومائة وعشرون

For list of features see Features.md

Benchmarks

Processing a file containing 500000 Line, 6787731 Word, 112704541 Character. the task is to remove diacritics / transliterate to buckwalter

Buckwatler transliteration

Method Time
anltk python-api 1.379 seconds
python camel_tools 11.46 seconds

Remove Diacritics

Method Time
anltk python-api 0.989 seconds
python camel_tools 4.892 seconds

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

anltk-0.5.13-pp37-pypy37_pp73-win32.whl (133.8 kB view details)

Uploaded PyPy Windows x86

anltk-0.5.13-pp37-pypy37_pp73-manylinux2010_x86_64.whl (244.3 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

anltk-0.5.13-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (196.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

anltk-0.5.13-pp36-pypy36_pp73-win32.whl (133.8 kB view details)

Uploaded PyPy Windows x86

anltk-0.5.13-pp36-pypy36_pp73-manylinux2010_x86_64.whl (244.2 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

anltk-0.5.13-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (196.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

anltk-0.5.13-cp39-cp39-win_amd64.whl (151.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

anltk-0.5.13-cp39-cp39-win32.whl (134.6 kB view details)

Uploaded CPython 3.9 Windows x86

anltk-0.5.13-cp39-cp39-manylinux2010_x86_64.whl (245.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

anltk-0.5.13-cp39-cp39-manylinux2010_i686.whl (257.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

anltk-0.5.13-cp39-cp39-macosx_10_9_x86_64.whl (197.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

anltk-0.5.13-cp38-cp38-win_amd64.whl (154.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

anltk-0.5.13-cp38-cp38-win32.whl (134.6 kB view details)

Uploaded CPython 3.8 Windows x86

anltk-0.5.13-cp38-cp38-manylinux2010_x86_64.whl (245.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

anltk-0.5.13-cp38-cp38-manylinux2010_i686.whl (257.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

anltk-0.5.13-cp38-cp38-macosx_10_9_x86_64.whl (197.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

anltk-0.5.13-cp37-cp37m-win_amd64.whl (153.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

anltk-0.5.13-cp37-cp37m-win32.whl (135.3 kB view details)

Uploaded CPython 3.7m Windows x86

anltk-0.5.13-cp37-cp37m-manylinux2010_x86_64.whl (250.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

anltk-0.5.13-cp37-cp37m-manylinux2010_i686.whl (261.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

anltk-0.5.13-cp37-cp37m-macosx_10_9_x86_64.whl (192.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

anltk-0.5.13-cp36-cp36m-win_amd64.whl (153.5 kB view details)

Uploaded CPython 3.6m Windows x86-64

anltk-0.5.13-cp36-cp36m-win32.whl (135.3 kB view details)

Uploaded CPython 3.6m Windows x86

anltk-0.5.13-cp36-cp36m-manylinux2010_x86_64.whl (249.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

anltk-0.5.13-cp36-cp36m-manylinux2010_i686.whl (260.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

anltk-0.5.13-cp36-cp36m-macosx_10_9_x86_64.whl (192.7 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

anltk-0.5.13-cp35-cp35m-win_amd64.whl (153.5 kB view details)

Uploaded CPython 3.5m Windows x86-64

anltk-0.5.13-cp35-cp35m-win32.whl (135.3 kB view details)

Uploaded CPython 3.5m Windows x86

anltk-0.5.13-cp35-cp35m-manylinux2010_x86_64.whl (249.5 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

anltk-0.5.13-cp35-cp35m-manylinux2010_i686.whl (260.9 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

anltk-0.5.13-cp35-cp35m-macosx_10_9_x86_64.whl (192.5 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

Details for the file anltk-0.5.13-pp37-pypy37_pp73-win32.whl.

File metadata

  • Download URL: anltk-0.5.13-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 133.8 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 b35c7ed9bdf5d29a5f5d29296c907968eb618d6ab2c413cb97a480ff0bf92945
MD5 a80c61864bf18044d3b21e8ef9d5ca2e
BLAKE2b-256 dd480fae2921f46ec9863250d571903ab8d61b7d46ed695eae86f8d4078b02f1

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: anltk-0.5.13-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 244.3 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f393e896ecac6bd048d1ec51da69e15f3d2b0eb9afd3693fdc768259dc6cdec0
MD5 2f7228992a9351c7c278cc79875c7008
BLAKE2b-256 97154642124a876f7849cf57b94ac45c463a284402cf6b9eddef366a13542851

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: anltk-0.5.13-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 196.5 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a2c8af8318bb50dbc52b0ee4c31a51db877ff327b0a212ba3535b22a2c5f939
MD5 907617431fe93568fd42b5988b89684d
BLAKE2b-256 7c7fbcd30699744b5570dc6d3f62710cd2cdd9ce2b3b897b8f4f089e9f4f909f

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-pp36-pypy36_pp73-win32.whl.

File metadata

  • Download URL: anltk-0.5.13-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 133.8 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 78839296bdadb7ecfa9c7e6cfb6610950b71fbb43a31258861534b57c4d82abe
MD5 1996922d44d172e6ca46e3609a00c7d3
BLAKE2b-256 ce1cd18c79c373f8d137f6fcf4e85d50cb1f2bd1e30784d386419eadd360c157

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: anltk-0.5.13-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 244.2 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c81716a049bd6e08d082c4010e29fc0b69aad30564d439944aed553aa4c41f51
MD5 5c005bc133c81981a12dc81a20b27b3d
BLAKE2b-256 ec9a5ac5afcec8793e69a2f15dfa14e7eb4b0eef602b149b46ac65a35f57960f

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-pp36-pypy36_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: anltk-0.5.13-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 196.6 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cad38099852859fe8fde944c74d90ffdc2912d5d3d9953f8ef325a4f3caf021f
MD5 46ae55f18a6750143be07e44ff687a00
BLAKE2b-256 52c50a7214b5815bd48954ce28ee87aa8a42cb19fda1f369190de9497402e86f

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: anltk-0.5.13-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 151.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8597a6f090bbfc419c45ed2ca9e767d3c3d620ab808b06270190da355a803a56
MD5 1e2b9e9c6e93ae42be9544e46b8781cf
BLAKE2b-256 4ba4cdbe81cc93166f1e292991a89fdbef376541b0c00a972a72c10001584871

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp39-cp39-win32.whl.

File metadata

  • Download URL: anltk-0.5.13-cp39-cp39-win32.whl
  • Upload date:
  • Size: 134.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b4ba75166a1806741acdd93c3adf17b1c17b3bc32780050987faf01bbce8e6ac
MD5 b2d4bd6e76bed480852f299145bc94a9
BLAKE2b-256 509b2b076f0281ceb820d7c854a993f1bf9a97b2a27cc91bc4025c6b45c014a2

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: anltk-0.5.13-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 245.5 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 086c63517b6b5edc84a1e61d1560157029535aa96784e7417059a7303e08e90f
MD5 2e91f02c3308608feff8fe5fe0eed2b7
BLAKE2b-256 e26a1d081ca590b6e960aa6d3f96ed75248bc7256c1b06028e41f4758c10bd6e

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: anltk-0.5.13-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 257.7 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d69659a8fc604a51ead7cee5af3cc4b6021a717eb2c2adaa0b97ed85aa95a3c6
MD5 eec33396eee3ed544239f95d91aff0b5
BLAKE2b-256 1886bd594b79824e5c2956099f9649bbae6611bd6e02635a643660fd1fdc3f24

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: anltk-0.5.13-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 197.3 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ad73e94184dac6a9296ba2789e717c77e46c819aa2780d3aab5629b1d591b3d
MD5 612911d76de9bce2241063cfe8a03b8b
BLAKE2b-256 47e98e543dfbd68f69899510dc5e0c141e89b09c90c6cad5ad6e8c982d387a72

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: anltk-0.5.13-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 154.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4a1fd5e5ecaa37216a70713a2e102c791bcac85bbd8f98f6d690fdf304d3879b
MD5 935adba1fd28d8800fe7a69e8e45f544
BLAKE2b-256 e7c50c56e3a1836bf798811bd483c0b03a138e84a02b60e571e55bcdec86c26d

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp38-cp38-win32.whl.

File metadata

  • Download URL: anltk-0.5.13-cp38-cp38-win32.whl
  • Upload date:
  • Size: 134.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6a949f3ca90b037701d849e9547c044803619d65de65da5b13da7e788e72402d
MD5 d0c4e3b69eb2094962504a1cf0a4ce9a
BLAKE2b-256 d537510ad7bd84f46ceb529edea27fdc8530098b85f98a15cb60edc163e45509

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: anltk-0.5.13-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 245.4 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 efd1647062e091d067c5d942878639b94e2a60f4c4697153db0e1dc17e61a680
MD5 019b07a9e1f64a6df8b226bc213e997a
BLAKE2b-256 f6abd642d6fe13b2c48f9a79172bc5dad8c3f37ff8b67a6ee63870369725b2a8

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: anltk-0.5.13-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 257.4 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 02cd6b58f001d994bef5da7f1a64dafd3dd82b00f4c3cdd6147b0280090c4598
MD5 7f95860d6e33721dd5367691cfffde57
BLAKE2b-256 5b5e6100c658b6f9f610b000740d3a0fbb2ab4889d05ed75afa7ae5d1ef9a4b1

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: anltk-0.5.13-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 197.1 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 67c02f0f6a7469e4bb1ca7211dbf50bb23ec5a93f1f05200e332672ac8982533
MD5 474c40ff15cc4e9796a1ffacb9dc009e
BLAKE2b-256 b1cecae30d681f8a59723b77a63ceeba88f792ee484d11ae67d63b2b56dae146

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: anltk-0.5.13-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 153.5 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ce769268b671450cbcac569136081ed2fcc9ca41ad57edba6d72ad7035da1c78
MD5 2d687eb40d8b56ef208ecc79009e6fb6
BLAKE2b-256 2af05b5a57afcfe6dd23caa06d16bb9273d0888ffdcf9056a954ca74f46da5c8

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp37-cp37m-win32.whl.

File metadata

  • Download URL: anltk-0.5.13-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 135.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 1c853e50523ab163aee7e7fb9a796c1b6bc7e7c81c4e25e43656faf72ca7c324
MD5 994437c51562b534aa5435fabe46fdb7
BLAKE2b-256 4831b69f414d4beffc6e550db8f652753b6b0c5f2933556619fe517f2b0a243e

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: anltk-0.5.13-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 250.0 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4cd40c07c01831da4032a2dfd9757a603efd4556a5e1373a7cd28b4ed289d566
MD5 8ab163a1849626aae291686c498347df
BLAKE2b-256 ffcb68aba686109977fa22ba6b88512756750cc8558cf39f9869b774d24e01a6

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: anltk-0.5.13-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 261.1 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7f806fad346eb1605bcd2cc66416f27c1ab9dae9b8d8745d8045e0eff874c4a6
MD5 13dcc2dd5ba27086a6a494c813f8029f
BLAKE2b-256 7d6a14f96462c144c9d81516654a2a076ffab38559c2aadb8f8e720e0a2c394a

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: anltk-0.5.13-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 192.5 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f3329a9d6fd05eb4528564f387a1dedf914036c75f3f7484d3d4ae77f674a546
MD5 b731f8d8b5ab718562b0b3d05389c8bc
BLAKE2b-256 1bc1f8170cdaac20159e968ee3b318766719866482394a78579f6539fe613e14

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: anltk-0.5.13-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 153.5 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 1800abe74162e465ce1cf9b31236350633c6375995865c6af68ba3c2762e99dc
MD5 af79a12e7412dc091a92eff285dfd8e9
BLAKE2b-256 4ec8d91b4cefcfd8e537f2e00fa4e507331adf82a7cfbdadbe20bdafdab5c668

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp36-cp36m-win32.whl.

File metadata

  • Download URL: anltk-0.5.13-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 135.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4ecd86e669532c39525d96e5b8c3060a1ef52b095677eb3d65f19e93d791d6a4
MD5 b867ad596d188390d211112dc9398bbf
BLAKE2b-256 343904cf4007aa11b050bdbf121afcd894cebb9a45a9c7b9ef529beb6898c2bb

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: anltk-0.5.13-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 249.5 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 32c0c39fe69c9cfdd02139f3ad5787385da4d174490086d570a308bfe3bb00f2
MD5 97d8edc77debd76452cf32ba2d49c393
BLAKE2b-256 356b2e591557abd29b1d0581f7a7cc911502c848cb0f52766a1bf6f37ee1bf1d

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: anltk-0.5.13-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 260.9 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c4c986597d728093441481984135c69ba948a05da8b0e3e06eb960781f46d0cd
MD5 6aa77d04fb6e6af80ad218bedd1da063
BLAKE2b-256 7b93ebc0736d929bc95409cd2a5b01c62913fd4ee623be55d1f3f29b2c41a78c

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: anltk-0.5.13-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 192.7 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 097996f1e73c7bd28d4468e9366c39d25cfcde2e45fada130237bec7207e0032
MD5 66d8e1b45e7dfec1eff660f43be0ddfd
BLAKE2b-256 426269d80c5121509b477db1b16d118e0eb5a0ef9553f6a27199ca59e673e9e8

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: anltk-0.5.13-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 153.5 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 aa2b17d8f4f267a4107907625c79e408a5769076cf52f70d7844aaabf74642bf
MD5 8e12d0ffd032e68216b96f087d5d781f
BLAKE2b-256 b44ab8f0698122700c856d04445a5773c21087db0f42d3d97c7b30a5689229c3

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp35-cp35m-win32.whl.

File metadata

  • Download URL: anltk-0.5.13-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 135.3 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 8de8a236d57b109396b2e028cd7f79d6d40b824e9c7f9d68e2dc517936f2cc8c
MD5 03577d45f19d5ff8dd090b13929c91c2
BLAKE2b-256 a32c3fe3e70d2fb8e06ea70f20aee9abdf5fb0c4389dc956d8fa7dc52d9c279f

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: anltk-0.5.13-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 249.5 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b3f361663d04590795e5c16105f048ed43771e422c16247b344b2245e07b0d8f
MD5 0e7d36d51833081330664b1d12da84df
BLAKE2b-256 c7a56ca2cf298195272797c0760fb54e1bc56a994405c01fac918dd7bace1a5a

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: anltk-0.5.13-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 260.9 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 051f7e908f6eeeccaf2f2a5bd5590ce0f335bbba7f76088ba42dc11b0a3678c0
MD5 ca85965473c0177b0459b130caf98566
BLAKE2b-256 a056abebf5835edb0c2637fa153d48f18b2ce7ef2a1661128b43dda803af05c4

See more details on using hashes here.

File details

Details for the file anltk-0.5.13-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: anltk-0.5.13-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 192.5 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5

File hashes

Hashes for anltk-0.5.13-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d018c5590923747e66aa67541a6ace852f436f70d0271edad3a645bd132eaf05
MD5 b366c440fea89da1fc67ed77852d492d
BLAKE2b-256 098867519ff9446d772e5871354dd0518e205c656239dc217500efbc76c6ccce

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