Skip to main content

Arabic language processing toolkit

Project description

example workflow

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 --recurse-submodules 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';
    // فراشة ملونة تطير في البستان حلوة مهندمة تدهش الإنسان
}

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("فَرَاشَةٌ مُلَوَّنَةٌ تَطِيْرُ في البُسْتَانِ، حُلْوَةٌ مُهَنْدَمَةٌ تُدْهِشُ الإِنْسَانَ."))

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

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 Distribution

anltk-0.5.5.tar.gz (24.7 kB view details)

Uploaded Source

Built Distributions

anltk-0.5.5-pp37-pypy37_pp73-win32.whl (113.7 kB view details)

Uploaded PyPy Windows x86

anltk-0.5.5-pp37-pypy37_pp73-manylinux2010_x86_64.whl (220.8 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

anltk-0.5.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (177.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

anltk-0.5.5-pp36-pypy36_pp73-win32.whl (113.7 kB view details)

Uploaded PyPy Windows x86

anltk-0.5.5-pp36-pypy36_pp73-manylinux2010_x86_64.whl (221.3 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

anltk-0.5.5-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (177.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

anltk-0.5.5-cp39-cp39-win_amd64.whl (130.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

anltk-0.5.5-cp39-cp39-win32.whl (114.7 kB view details)

Uploaded CPython 3.9 Windows x86

anltk-0.5.5-cp39-cp39-manylinux2010_x86_64.whl (222.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

anltk-0.5.5-cp39-cp39-manylinux2010_i686.whl (232.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

anltk-0.5.5-cp39-cp39-macosx_10_9_x86_64.whl (178.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

anltk-0.5.5-cp38-cp38-win_amd64.whl (132.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

anltk-0.5.5-cp38-cp38-win32.whl (114.6 kB view details)

Uploaded CPython 3.8 Windows x86

anltk-0.5.5-cp38-cp38-manylinux2010_x86_64.whl (222.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

anltk-0.5.5-cp38-cp38-manylinux2010_i686.whl (233.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

anltk-0.5.5-cp38-cp38-macosx_10_9_x86_64.whl (178.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

anltk-0.5.5-cp37-cp37m-win_amd64.whl (132.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

anltk-0.5.5-cp37-cp37m-win32.whl (115.4 kB view details)

Uploaded CPython 3.7m Windows x86

anltk-0.5.5-cp37-cp37m-manylinux2010_x86_64.whl (225.5 kB view details)

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

anltk-0.5.5-cp37-cp37m-manylinux2010_i686.whl (236.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

anltk-0.5.5-cp37-cp37m-macosx_10_9_x86_64.whl (174.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

anltk-0.5.5-cp36-cp36m-win_amd64.whl (132.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

anltk-0.5.5-cp36-cp36m-win32.whl (115.4 kB view details)

Uploaded CPython 3.6m Windows x86

anltk-0.5.5-cp36-cp36m-manylinux2010_x86_64.whl (226.6 kB view details)

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

anltk-0.5.5-cp36-cp36m-manylinux2010_i686.whl (236.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

anltk-0.5.5-cp36-cp36m-macosx_10_9_x86_64.whl (174.0 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

anltk-0.5.5-cp35-cp35m-win_amd64.whl (132.1 kB view details)

Uploaded CPython 3.5m Windows x86-64

anltk-0.5.5-cp35-cp35m-win32.whl (115.4 kB view details)

Uploaded CPython 3.5m Windows x86

anltk-0.5.5-cp35-cp35m-manylinux2010_x86_64.whl (226.6 kB view details)

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

anltk-0.5.5-cp35-cp35m-manylinux2010_i686.whl (236.6 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

anltk-0.5.5-cp35-cp35m-macosx_10_9_x86_64.whl (174.0 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

Details for the file anltk-0.5.5.tar.gz.

File metadata

  • Download URL: anltk-0.5.5.tar.gz
  • Upload date:
  • Size: 24.7 kB
  • Tags: Source
  • 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.5.tar.gz
Algorithm Hash digest
SHA256 84c0ff83f263f1b6db11c9b1b6a05089e319708f999668a05f015b4d5b60dfee
MD5 25760b8fc4dcbaf523c057266aaa00db
BLAKE2b-256 0361a6f80cf941b95a80e5f0a2ce3dfe06f46e4db66f75f0ca9b9106522fd69a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 113.7 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.5-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 ef58c3e7fa93e1e8c402176f5ad2beba614bdc19e8b803107f8631adca4e51fc
MD5 29e03413fe04783215d45feb91cbfe2c
BLAKE2b-256 3525a5ffdb263387372474d40984bd837497a64c4ea30de2288592dca85d2735

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 220.8 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.5-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 321dbee7d372d8fd2702f5326efefc24d71c51d0c45742d82c4b25d4ce7076f6
MD5 dfda4e6fd08b637b26719a657d322298
BLAKE2b-256 a53d42e12c3d98a6e141b471876a096328d812f91818312804814ba939019c7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 177.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.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e1868764395915336c40c1a3f1a888995ba871392cdf606974bb48aecd93566
MD5 555efd4cc967ca4af8044df73e9b0b49
BLAKE2b-256 51be6c25ea9cb4d3efd0b6ecd797fb948d3208d2d839ff5cd6236bb2b42814b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 113.7 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.5-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 dc8d0fd610fca0e437ea8ca875a244c37a3d5a4104a75f5b6481336ed42b1c47
MD5 2ed8a85a8bf872b331bf3ee31d791bfd
BLAKE2b-256 2b678404f4b98ae2f24f1938524977f07a2b913181a3d821b6261a440c4c0a8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 221.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.5-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 799d8ec5e247ff3f930147b42209abb3b46b9174bc7844f774b3153b1205477b
MD5 d3dcf19711ed6d986d330a0096a8cf7f
BLAKE2b-256 fdb550854a9bfdecde91dd200baef0d7e0f3f59d22bd1244da6607c786152157

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 177.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.5-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 461a66e395033739b70f1fb231db118766bd17d60f2520ae0709c618ebab77d2
MD5 b28dcc9ab3755175daa42916d1a878f9
BLAKE2b-256 5f84d6df55877ead7f981ed980a8249fd2a9ecf5f235f907d2608d0bd29e0d3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 130.3 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.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ee5f3cc210b36a97a83dbb54ea0120fa06fe30cba25a3068761e53bd22ddecb4
MD5 06f0f9fef508d6bf658246ad273fbf2f
BLAKE2b-256 2b9078dc7bb48916c7837b8599311adc6b495ef020108f3b68cfdb3610537c71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 114.7 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.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fa1fa7cf5c33e7bb6d4df0a78f0c49eb9c8afbb17edafd5d88317e18440feb25
MD5 4b2f3875f5324fff08aef590a2db3b0e
BLAKE2b-256 03033b879ed04efb61bbd4b05b6ba67808015ec6ebd5b8771dd6181ca00733c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 222.1 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.5-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0b24b95f3901b80f7cc7767b50ee2697ed25f36bc5b8c9813894f76679e72366
MD5 2013190cfda60f5e57892eba689112b2
BLAKE2b-256 a7cfd2f76d63e263323700de08c5911eb924ad111466ca0b49e90f7040f15d70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 232.8 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.5-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c9cf9d1ee4c2cd5f8e78bf68403c7040ceda1b06bc7ab7439dc525c6082a2757
MD5 7b6707ce89f12d381bbb6b860bc14505
BLAKE2b-256 a393daa412a5de8c2a19d804d07fe97a620d874fa9e220abfb8b0e083b54db9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 178.1 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.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2d21725275acb58ff94880eb8581e3be1de64c3a2e9b7260558ae3363964643e
MD5 43711785917a80a5d1053303f5d35d5e
BLAKE2b-256 be43007ac3c02cf97ca0eda35bfa5006126021d32c362e79b2da1f683022a573

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 132.8 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.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a5a734aaba13ea55edb66b7ec78ac3acef6df3f8abb788bd50a1dcca47c0ec53
MD5 98df7d8122651464a30436efe2718a03
BLAKE2b-256 89a779dae67c0b99b024d70d2134b82200b1db5195588743eeeac71815aa7e4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 114.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.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5ccc4a1099110ab49a7ccd1f645d5772ba527dc4f3aac9a4d0d6b7d3d2448369
MD5 115a9a5c07ae549ef90027ac9af30fa9
BLAKE2b-256 693f702a274d2a92a5964b13764dc547e0a386cf66644fe75dfd4a70d011bee9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 222.0 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.5-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f662c7cbc4623334552e1592979242383e401a86277b665717e1f9717d93345f
MD5 c78123a3b66b42b52cf686ac22f1badb
BLAKE2b-256 d767f14ce02f4d7a9fc4f427420480f1ccfaf8e2a174745623ab36524f884217

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 233.2 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.5-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bd165413597a48acdbc682b2b557f7d36beb59d4cfd9414734972a9deb71e80d
MD5 2b4251d28259ed810dfb1c22255ad078
BLAKE2b-256 83126827c61605d557d3a77e2190e4799903c38f4e8236160542639b6832de76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 178.0 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.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6e6dbc2cec058fbaf3ec7416cd18b321a88620b79cccb7f5c5d4d1859676e568
MD5 fb5bbcb26aef306cf067a5887bb621f2
BLAKE2b-256 9a8c01400e768644d8dca5ff0ff3aa32862e11beba09f0af65a9591bf0147b47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 132.2 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.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 28acadb49b61215635232889bc62b8dff42f2baeceb93f41bb23dc85a796b730
MD5 bb15f52df19ff68cabb61cacbfc1aefe
BLAKE2b-256 56de8d17f1ecb6f5d6ac7e14dbd7d3c098bf0a22b4eebfc3e2db72cbd317bef3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 115.4 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.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 db0c125b7876b4a313c004ad8b10215829bab5f00b2874ed0c67dd7adb548a1f
MD5 5dac9945a18576251638dfc63f1cdd71
BLAKE2b-256 802f7687f09eefdbc747806a24f74b6e09f25c34402206157dd0e7295ecfd589

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 225.5 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.5-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f8689257771a20ed18fe69c34951b5122ed913b052053a76a09c05334ea0b04e
MD5 7ad59fdd1e7812df406e787688376c48
BLAKE2b-256 aa41e0f37708ef8003dd259a1ae7736ce7c3f9eef573e472f604fa001cb3e004

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 236.6 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.5-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2af1c35e8fa8738346f2b7e55320af92a918dfd56639c64bd0585ff968f3951b
MD5 4eb14cf7c48bebb335259017a32fb497
BLAKE2b-256 0e5260c9f5a3755b13f7cfad699c5bd7a7878e1ed7a1e0941ba7ea74b2a3750f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 174.0 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.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e1cb201af35efe36c95fa1294e5a252557830d1fc58128e3347d044a095f70f7
MD5 0c515bed21b3bf68dab7817b120b8017
BLAKE2b-256 df6c2e71eb2c94a0d9e6ec622390f6310539dbd71a99479ce6cc9204db37aabf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 132.1 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.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a5b6f1a2acced5c39dffc27e70668061b3abb5080da209b881d8d91d59a62936
MD5 a8dca6a187e2552b9fb9c693e3921c6c
BLAKE2b-256 35f9da10dd1a1523ece6e57a55b0470a02d6a897d6eda8d4f83751f709d37d13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 115.4 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.5-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 08c409fc787705c9e4b96682fffc49c51bb7e3d0fd501fe357d4ac9cdc73229e
MD5 e490650003e3ba8434cf10bed3efe3fd
BLAKE2b-256 17cf8eb5038a6584d1fc489c04a4ad38b2a8de501595e005beda99193fb0ee8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 226.6 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.5-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fcc1beaa8719549a5895b9cf0faf549ca2b838be9a46ee6358fc63b5ff16ba10
MD5 8f805f44ac39cacd8d196a74fda41524
BLAKE2b-256 ea8b1f06275cdc7a80503a021192826fa4946db84bd75c1f11894fbccf6f5efc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 236.6 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.5-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e03e15f4f625e283661101ccb228382f4f710e9a6decf8d5311a1f8ab3722280
MD5 78610a9c0313001329791ebabcdf09de
BLAKE2b-256 9467f596b027deaf85dedbff99de9fa175f621a17147d887baf8e1ddb81cf5b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 174.0 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.5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0b16b7913084bd7a201f839a5bbaedecbdb9591c4e95b25bf83c5d118ccec291
MD5 b0965082446ef3eb7fdc9beee4874571
BLAKE2b-256 d3f7490d558594b369024cb4a84fa307a35272c06922918cbe6474411bdbdad9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 132.1 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.5-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 ed27eb04ca5bcd7732e453f31620e2d4a4714591fd4f0520ac8b53fd821c23e1
MD5 bf128d81905606551b557a6727a00124
BLAKE2b-256 93c7ce173eacc769f28c8c9dcb0f940ca6112db1ecd7c1aea343992624bebda5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 115.4 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.5-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 7b781d0ebd55f79ad071af263624ea2f03b65475fd7f5d7a553d93f60ed9b51c
MD5 97ca70c1e0804d4e328fbfca337982ec
BLAKE2b-256 a0d70de706a416211f7e288ae2a492452b059ab3e7207213c1d3817731eded23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 226.6 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.5-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ece529734654ee30320c88e1b7584633be46ffb0867268b367bcf71faa0f02c8
MD5 ab3efed0d3c8bddb4ce50e8f35d72984
BLAKE2b-256 df21c1d2e50387f8ae6f9f0a7c42ab1e6636721c67696bc02d1d09e9472879dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 236.6 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.5-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7b469ea68c56ad26f3cb2e50b901dad393151712e04f9b2b06b16aff85cec349
MD5 e14e270afd8469a9a548076434cabdd1
BLAKE2b-256 ca507e87319b67698e81ba3443c801fa04aec065f381ad516e27a0a2c0d36f47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anltk-0.5.5-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 174.0 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.5-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ab113ac66303a9bf6885303c85eff8c14765411eb65e68c3b345cea13ffb4250
MD5 cd2dae3041e205ece35421bd02a8bd60
BLAKE2b-256 7e276c8e9b1acf508cd3198b31cc466187f470cb2bcad253ae17a8f496127672

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