Skip to main content

A Python2/3 wrapper for Lemmagen lemmatizer supporting 19 languages.

Project description

About

lemmagen3 is a Python 2/3 wrapper for the Lemmagen lemmatizer (version 2.2).

It is different from other Lemmagen wrappers like this one on PyPi because it offers a clean, fast OO interface built with the excellent pybind11 library and supports an additional language (Croatian).

Models for Slovene, Croatian and Serbian are significantly updated and make use of frequency data to prefer most frequent lemmas, e.g., for Slovene: je->biti instead of je->jesti, mene->jaz instead od mene->mena, od->od instead of od->oda etc.

In total, 19 languages are supported:

  1. Bulgarian: bg
  2. Croatian: hr
  3. Czech: cs
  4. English: en
  5. Estonian: et
  6. Farsi/Persian: fa
  7. French: fr
  8. German: de
  9. Hungarian: hu
  10. Italian: it
  11. Macedonian: mk
  12. Polish: pl
  13. Romanian: ro
  14. Russian: ru
  15. Serbian: sr
  16. Slovak: sk
  17. Slovene: sl
  18. Spanish: es
  19. Ukrainian: uk

Installation and requirements

pip install lemmagen3

will install the module and language model files. Please note that on python <=3.5 and python 2.7 the package will be built from source so you will need a C++ compiler.

Note: If you use python 3.5.0 or 3.5.1 you will likely get the error shown below. This is a known bug in these two versions so please consider upgrading your Python.

ImportError: ..._lemmagen.cpython-35m-x86_64-linux-gnu.so: undefined symbol: _PyThreadState_UncheckedGet

How to use

The following snippet illustrates how to use lemmagen3.

from lemmagen3 import Lemmatizer

# first, we can list all supported languages
print(Lemmatizer.list_supported_languages())

# then, create few lemmatizer objects using ISO 639-1 language codes
# (English, Slovene and Russian)

lem_en = Lemmatizer('en')
lem_sl = Lemmatizer('sl')
lem_ru = Lemmatizer('ru')

# now lemmatize the word "cats" in all three languages
print(lem_en.lemmatize('cats'))
print(lem_sl.lemmatize('mačke'))
print(lem_ru.lemmatize('коты'))

# you can also change the language for an existing Lemmatizer object
# lem_en will now become a French lemmatizer:
lem_en.load_language('fr')

# finally, you can also load your own Lemmagen model
my_lem = Lemmatizer()
my_lem.load_model('/path/to/my/model')

Note that the function lemmatize accepts single string tokens and does not split the input string! If you want to lemmatize a chunk of text you will have to tokenize it first, e.g.:

sentence = 'cats hate dogs'
tokens = sentence.split()
sentence_lemmatized = ' '.join([lem_en.lemmatize(token) for token in tokens])

Note also that lemmagen3 operates on unicode encoded strings so if you use python 2 make sure that your input string is encoded as unicode.

License

Please note that this repository contains code and binary models compiled and built from different sources which are under different licenses:

  1. C++ files and headers come from Lemmagen and are modified and adapted to work as a Python module (LGPL)
  2. Binary models are built from Multext and Multext-east sources:
    • Language resources used to build Farsi/Persian, Macedonian, Polish, and Russian models are for non-commercial use only.
    • Language resource for other supported languages are released under CC BY-SA 4.0.

The rest of the code in this repository was created by the author and is licensed under the MIT license.

Authors

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

lemmagen3-3.3.2.tar.gz (11.6 MB view details)

Uploaded Source

Built Distributions

lemmagen3-3.3.2-pp37-pypy37_pp73-win_amd64.whl (11.6 MB view details)

Uploaded PyPy Windows x86-64

lemmagen3-3.3.2-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (11.7 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

lemmagen3-3.3.2-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (11.7 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

lemmagen3-3.3.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (11.7 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

lemmagen3-3.3.2-cp310-cp310-win_amd64.whl (11.6 MB view details)

Uploaded CPython 3.10 Windows x86-64

lemmagen3-3.3.2-cp310-cp310-win32.whl (11.6 MB view details)

Uploaded CPython 3.10 Windows x86

lemmagen3-3.3.2-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (12.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64

lemmagen3-3.3.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (12.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

lemmagen3-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

lemmagen3-3.3.2-cp39-cp39-win_amd64.whl (11.6 MB view details)

Uploaded CPython 3.9 Windows x86-64

lemmagen3-3.3.2-cp39-cp39-win32.whl (11.6 MB view details)

Uploaded CPython 3.9 Windows x86

lemmagen3-3.3.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (12.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

lemmagen3-3.3.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (12.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

lemmagen3-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

lemmagen3-3.3.2-cp38-cp38-win_amd64.whl (11.6 MB view details)

Uploaded CPython 3.8 Windows x86-64

lemmagen3-3.3.2-cp38-cp38-win32.whl (11.6 MB view details)

Uploaded CPython 3.8 Windows x86

lemmagen3-3.3.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (12.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

lemmagen3-3.3.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (12.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

lemmagen3-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

lemmagen3-3.3.2-cp37-cp37m-win_amd64.whl (11.6 MB view details)

Uploaded CPython 3.7m Windows x86-64

lemmagen3-3.3.2-cp37-cp37m-win32.whl (11.6 MB view details)

Uploaded CPython 3.7m Windows x86

lemmagen3-3.3.2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (12.5 MB view details)

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

lemmagen3-3.3.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (12.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

lemmagen3-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

lemmagen3-3.3.2-cp36-cp36m-win_amd64.whl (11.6 MB view details)

Uploaded CPython 3.6m Windows x86-64

lemmagen3-3.3.2-cp36-cp36m-win32.whl (11.6 MB view details)

Uploaded CPython 3.6m Windows x86

lemmagen3-3.3.2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (12.5 MB view details)

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

lemmagen3-3.3.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl (12.5 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

lemmagen3-3.3.2-cp36-cp36m-macosx_10_9_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file lemmagen3-3.3.2.tar.gz.

File metadata

  • Download URL: lemmagen3-3.3.2.tar.gz
  • Upload date:
  • Size: 11.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for lemmagen3-3.3.2.tar.gz
Algorithm Hash digest
SHA256 ea88af23243ab9ad9a0303b50648ac62107513adb8d0de655ee0200596c11e7f
MD5 13bcf884ca0eb2e01da8391d3f6648a0
BLAKE2b-256 a261d7fb6f8751693e5857b4027b8e9a39ccbe893cd0a2e1fb5ccc0f3fa39dd7

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-pp37-pypy37_pp73-win_amd64.whl.

File metadata

  • Download URL: lemmagen3-3.3.2-pp37-pypy37_pp73-win_amd64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for lemmagen3-3.3.2-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6828428086a0572bf2c99c0bc3d7ec07e47c6558ece3c61e7f8b4bca860c57f4
MD5 751ce0789f4402bc6fc002e26dff086e
BLAKE2b-256 349b98209d6e8fbe43224eead3ae9168711f3a41086f42e758cc6f852f3da4ae

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.3.2-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6306fb915eca0f88fc27ca228971babf4e91ef89717f97a3b5cec569d2d02b89
MD5 de683d9082dd84317f21d103a76c4e82
BLAKE2b-256 990ac413f5eb05557a62a39ce28e63545a8415c5731e04822bbc7e651e51bd20

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for lemmagen3-3.3.2-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 183f2fee7856b3ba83499c1cbc850ac62990df5e5346072701ffeed7ba2f78f4
MD5 6c2c6ebc625a64cbbfd401de2d64197c
BLAKE2b-256 28ea4df2fd9a06b24d86e78487155944e106db9b7a0a4d1b57809dcaf5fd7a18

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: lemmagen3-3.3.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for lemmagen3-3.3.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0c28e6ac131503a173c911deae408c483e1929bbd111abfe121e278e9a6295df
MD5 ffc885d3421c8cf2d99ebff5de17f733
BLAKE2b-256 f770cd64e5ba20c78985e277f0d20273064c12ffd14db97422ffefb2e7b9d4d4

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: lemmagen3-3.3.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for lemmagen3-3.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fb171c758143cdfcbfa7cf61d362d3105a117ab262865adc96ca895f60364ddc
MD5 ba2ae053b1f76d7931fbbdb912ff85cc
BLAKE2b-256 9edbbddcfac82919c9c7a0fef579b268096b9c7e47d730f7a1740f68443e4047

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: lemmagen3-3.3.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for lemmagen3-3.3.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 68c6cca7402f2e947485806d4483203e1d58487d76e6123070625f9407c10fcf
MD5 7524b057c8da35395d6eebc73df27b92
BLAKE2b-256 6e73a053e45633e1789719135f527e70d0d45ce2f644e09e6446b874171bff42

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.3.2-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c85019d8f791645627bf8bcdf92d3e0f0bc5b0b7067b2452b6a6f41dc3f01fca
MD5 7694c0750284db1d6e846e783dc48e5e
BLAKE2b-256 a40de32d1d0a7c6d94792eba3385ad3356a8cf6ac7bf6e611af4bc60d0e5e58d

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for lemmagen3-3.3.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 15c5b69046b9a2d1b04fd0d1ecc75fd535cb735f0d5617065037d2f7251f2dee
MD5 d216cd2cac419e9757f781f4cd879a39
BLAKE2b-256 5f994d715ff098b7cf52ce6a2fd8e615813758cd7325c2c4293a73a4c6cb6812

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: lemmagen3-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for lemmagen3-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 179540ee9d14ab2797d988597d9639d9bef95a4dc12912ed5afe989152076791
MD5 ae865231f894005ca5c9bf35ddd87f55
BLAKE2b-256 43a5acb206e804e4f3cc7b3266c987da9f8dae1196fa8eb0c91a8d1ae5b9187f

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: lemmagen3-3.3.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for lemmagen3-3.3.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3615308738889fa2278e569306175915c74063c4aa75fb09adb6a9787750fcd2
MD5 11d3ebad12c2d06dea3e5cdd46ffacdd
BLAKE2b-256 31393df25ae88466118f27fabc1b7551e3ed193583d195aa6fd2e90ccc2aba14

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: lemmagen3-3.3.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for lemmagen3-3.3.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d493270ac90119d1c408e00e119b440343e7e4546d73aea01f6ac0fcd7b5c7dc
MD5 308b8e75b7a6562409625f8cc060da00
BLAKE2b-256 3ddfac450f081fdf2420cab286337429cd48e985e8731eec2197bffc887d5d75

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.3.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 07b9b517288a9825ff67e9c8f6fe41d6db050066acf606bcdda7a3ef007627f2
MD5 fb7fcc8035cf181caa83e6ac4cd903f8
BLAKE2b-256 6592d78bfee28184ead6baa044d937cbdd99623a46337932b320aa0f862fb5c6

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for lemmagen3-3.3.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fbbe5814581dfade127cafb65e695e076d438e0c10287815857e20edff927d2e
MD5 f708593e0674f41a29038b4266b8cb7a
BLAKE2b-256 7b298f0cefdf1849cc60b2511276871b7c111ef256a9045363352b27ddc6562e

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: lemmagen3-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for lemmagen3-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 94fecdc9f026931879ea7a26172a6490b2115aaa076d8d7f7c1922dc0f743032
MD5 44483bed1ec2d404743601aae0d032ab
BLAKE2b-256 b39aba535182ce7444ea85069ff57794ad3c07634d577f95dcbfb1c4ca587f4b

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: lemmagen3-3.3.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for lemmagen3-3.3.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f7bfae20a17a7d26cfc386fad336decb6a9219cf405d464439a4cd2a1f58f7ee
MD5 d65fd89a353d2bbee33495fa60cad3d9
BLAKE2b-256 611b84ae67058bb992be898cb339cc4ca01e5a1c618f0582adc37c828f66aca4

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: lemmagen3-3.3.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for lemmagen3-3.3.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b40646c05c66916d2401effdd98326fb117315150ba7964db21a5e67fc949fca
MD5 53e8e41e5a8af0390ab9a3a715bfede8
BLAKE2b-256 66c55aee0d607e46c9a07d21d3c937f89a820604c6e4c6fb98bdc47c028f8479

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.3.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a6c132ae83d6e753bdf58a4d6660487922de2e423a845672e9e36d89940aa37c
MD5 831b1e3a35b3ef5b8fa2aa3440a66323
BLAKE2b-256 2570f0718267c4f379b8b5518b429768e87c282a0238f70bf0554c8af053df35

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for lemmagen3-3.3.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3638b1822e1ba597cd5f736b30ce021b200f3db24633f5e190d7acd4fc0c5814
MD5 6a8e9087e91150f4e9f882970c928d0f
BLAKE2b-256 9b05ae1e70ccd50882e76340ceca6b1172b5dc966080f4499391b141f1c49024

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: lemmagen3-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for lemmagen3-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1f87b4ac5684c21a3683628f2b6ba78a4be7de4e6c7e4631857b852194627083
MD5 5e697d9be34ab08b66317cc23e3d7713
BLAKE2b-256 19aff4071c276233c33d1860874a6eb6bc566ed0c813a957c09db5cfea8ee177

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: lemmagen3-3.3.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for lemmagen3-3.3.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ebe4a262d0d10c638a57effc3017a0afc096a671a0f44a4cee70b0b8f2080903
MD5 68b823e136652dd5c693ee02562fb2a8
BLAKE2b-256 20a64c49b3a34e20cfa63ed04d3dac256d1d072a890abfbabfd47a2f08e05212

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: lemmagen3-3.3.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for lemmagen3-3.3.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7b0e66f029275d06698bdd598d20738ad2f844ec32f3f2c66aee857422e6916c
MD5 c8d6cfc6f46f06e1176fe178d83a6dac
BLAKE2b-256 c344ec5ce556c0bc407a628bf174725f84b33528421f244a0da2c8b7419afdd7

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.3.2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 aa086d84a790fcbfa4567d9a7029b1bbfdb64ab277095f65c136129c400a8147
MD5 d44bf26a901cb43e45739554f826ffe8
BLAKE2b-256 82914f1453ef8db0743c1cab742b914a56d112a3c5ea8f5de20d7a5055d9bd6b

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for lemmagen3-3.3.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8b41d059d1b00e045c705674404a713448812d6c182caf04365a0998c4a4663b
MD5 8be9b7d28c4bd88874f9e7433a79cbf8
BLAKE2b-256 136781b982454c8d2fd0f2584b138983a9114314fe306959a78591c42c8c21f1

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: lemmagen3-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for lemmagen3-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9af07364f1bbe3466f2a6b4901dca132207b23594242d1c8990dc532d6372ae0
MD5 9129795e8e18b248a6bc385dbe260a9a
BLAKE2b-256 2a1d21606add10e52d464de220bee2694580c36696beffdfab7d65d6dbaafd82

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: lemmagen3-3.3.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for lemmagen3-3.3.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d0ef8ed114adb9459957b1491c6e3dbb6780f2f857940220e4e34ccc17f1ae28
MD5 2d3fddb12b218d339c8330342381498d
BLAKE2b-256 6c2748c2db525d36f57a20053d96d74cd49bca5199a94eba21bc89e7be4067b9

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp36-cp36m-win32.whl.

File metadata

  • Download URL: lemmagen3-3.3.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for lemmagen3-3.3.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 53090d01120a86b605b8f39c525abd18cf8fba8f23f1df8b0a0a2f8994684503
MD5 e054199e7832b11352dff5717e77549f
BLAKE2b-256 4137a53c929e1e876f3410fe69e191cbae7c71f0298eb6b2a1583b171fc87e64

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.3.2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5e594c0e2855d2deb6039cecf1a99a57cc45fceef3771bd594b42e8844f5f121
MD5 95381ba68d6c7bc42eb0f2c0fe7f25ce
BLAKE2b-256 69e1ffd8963119edb56682c467ca0d7ebbddc83265d33ac2f46c4eaa5f16f797

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for lemmagen3-3.3.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c6ee3c227a7ed8d4f007599983691019f8a1fc5da3d03a134bc17af8bc01c57f
MD5 3d2f595f2eb2792790fe3048b74b9920
BLAKE2b-256 0ed345a0545ffc5414d7530dd87d4292640f0c27ca539b26df1f0c2de54266fe

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.2-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: lemmagen3-3.3.2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for lemmagen3-3.3.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e7df84b7815d18dd984fabaadd3b5c0a3f04a7b04f8d3fb7695feaca437e3de4
MD5 92c1bedb957fd9851a3aacc66dcc5bf0
BLAKE2b-256 f14f1afcb9758906b5a2ea2c4a52d4dc26e54f34757d77e88923de0e591afc78

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