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.5.1.tar.gz (11.6 MB view details)

Uploaded Source

Built Distributions

lemmagen3-3.5.1-pp310-pypy310_pp73-win_amd64.whl (11.7 MB view details)

Uploaded PyPy Windows x86-64

lemmagen3-3.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

lemmagen3-3.5.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (11.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

lemmagen3-3.5.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (11.7 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

lemmagen3-3.5.1-pp39-pypy39_pp73-win_amd64.whl (11.7 MB view details)

Uploaded PyPy Windows x86-64

lemmagen3-3.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

lemmagen3-3.5.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (11.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

lemmagen3-3.5.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (11.7 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

lemmagen3-3.5.1-pp38-pypy38_pp73-win_amd64.whl (11.7 MB view details)

Uploaded PyPy Windows x86-64

lemmagen3-3.5.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

lemmagen3-3.5.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (11.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

lemmagen3-3.5.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (11.7 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

lemmagen3-3.5.1-cp312-cp312-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.12 Windows x86-64

lemmagen3-3.5.1-cp312-cp312-win32.whl (11.6 MB view details)

Uploaded CPython 3.12 Windows x86

lemmagen3-3.5.1-cp312-cp312-musllinux_1_1_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

lemmagen3-3.5.1-cp312-cp312-musllinux_1_1_i686.whl (13.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

lemmagen3-3.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

lemmagen3-3.5.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (12.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

lemmagen3-3.5.1-cp312-cp312-macosx_11_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

lemmagen3-3.5.1-cp312-cp312-macosx_10_9_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

lemmagen3-3.5.1-cp311-cp311-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.11 Windows x86-64

lemmagen3-3.5.1-cp311-cp311-win32.whl (11.6 MB view details)

Uploaded CPython 3.11 Windows x86

lemmagen3-3.5.1-cp311-cp311-musllinux_1_1_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

lemmagen3-3.5.1-cp311-cp311-musllinux_1_1_i686.whl (13.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

lemmagen3-3.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

lemmagen3-3.5.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (12.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

lemmagen3-3.5.1-cp311-cp311-macosx_11_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

lemmagen3-3.5.1-cp311-cp311-macosx_10_9_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

lemmagen3-3.5.1-cp310-cp310-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

lemmagen3-3.5.1-cp310-cp310-musllinux_1_1_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

lemmagen3-3.5.1-cp310-cp310-musllinux_1_1_i686.whl (13.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

lemmagen3-3.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

lemmagen3-3.5.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (12.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

lemmagen3-3.5.1-cp310-cp310-macosx_11_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

lemmagen3-3.5.1-cp39-cp39-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

lemmagen3-3.5.1-cp39-cp39-musllinux_1_1_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

lemmagen3-3.5.1-cp39-cp39-musllinux_1_1_i686.whl (13.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

lemmagen3-3.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

lemmagen3-3.5.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (12.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

lemmagen3-3.5.1-cp39-cp39-macosx_11_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

lemmagen3-3.5.1-cp38-cp38-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

lemmagen3-3.5.1-cp38-cp38-musllinux_1_1_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

lemmagen3-3.5.1-cp38-cp38-musllinux_1_1_i686.whl (13.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

lemmagen3-3.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

lemmagen3-3.5.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (12.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

lemmagen3-3.5.1-cp38-cp38-macosx_11_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: lemmagen3-3.5.1.tar.gz
  • Upload date:
  • Size: 11.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for lemmagen3-3.5.1.tar.gz
Algorithm Hash digest
SHA256 11b7244cf7f71cde6a3a1d7d1b2b9fbd6d6a15bf9e9b5eab3933d930bfa69e57
MD5 1e142085d32495f17e7415420a051785
BLAKE2b-256 faab8e340ecca5c2b0394db41c8789b32501775f09fcd52ec2f5677fb0f0baa9

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2f77019c54e12ef8e60cf061dce5a0a9c39f3743d8aa62c88b7bb3075a20b6ab
MD5 a44454943ba88879ce4a800211d2bc33
BLAKE2b-256 b8b38aa49b3ff87403dff0d3516b0a537a69e37c2a1db77953967145fbc703b3

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f7a5f00020aa3c4eb27e418f3e9721fcaa518bb5f32c86170b62057207f0504
MD5 33764c4702d56a26bf157723108ab4a9
BLAKE2b-256 c3dacb365f5804857b46427cb941d07696a47cfcc53adc80e53362fe3a14194c

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a50013054e9d584dd1a2e02187bf68aef715134b72fc0a9c064603cc9ec4b61
MD5 8c3bf26a0437f9edbd63884c11c58802
BLAKE2b-256 a4891c177e7132e880d30e74eb962878c428d82664a3dd6939f5ed0f6875fc35

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 50c346db521562ab48e74c31e0fd7edcdf62cbdcac70457349ec50e45cc910d5
MD5 ede98e89aba5715e7f64623ff588f38d
BLAKE2b-256 3fcc05f3fee62b52a732138a6d0f91e41162d732525a9c2a4cb540e86dffbcd3

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6f278f5b6d861272d5d44be25f955d4268408f233bf6a8ed0cac83e2a9c3b7fe
MD5 15725eb0bc70310ebf3a678b0db43667
BLAKE2b-256 262d1c0bdf07c599a47df8e024373081c94b0a100131f5dafbdb93af8cbf1885

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff8d768b6d86fc9dc137295a7031b2f06f5c5188be72ec2a1a00c88036038787
MD5 6fa86e8ce0452bac0bd49ead7c349ded
BLAKE2b-256 1f246393b414a06ed18dc533132821a2cdc0441785e923e8763ffd5991e1147b

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e40ac873cf1ffb33fd2adf3d3c4fd8c7c8ddcb089317ef66c613ea26a8f15e1d
MD5 4404f4dab68a166892124b213f1874e2
BLAKE2b-256 f6ea62068d859963eaf55749aba37b864c43acd671052f746b0cb3c019a0dc4e

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5dabf3efe1e2e0271dffccb225ff4465373a5658782a334775258016d8cd339f
MD5 53aa332b77c49b5cf210662add5809ea
BLAKE2b-256 e5455a4342d576d07a1698de899638703817cf1b9f05233cf03a5aa6af09a433

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0ed357a007e343d68c253e797ab06afaea49c9733721d87261326903edf0fed2
MD5 e8791f3bdda84830b44bc56df20dba90
BLAKE2b-256 9b3e5558d17e817b7e7af108591f19e247e91718993d03b91079686913bda294

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f84e05483f875fd2106ae56e6db0aca51c3b907a9a3287553b53ab11feba720d
MD5 daa5932184d4c3cf4e80e7ad990a2816
BLAKE2b-256 7a18b777a2953fbbd7f5dd5824ae42f09ce53ad02c24455928d1ec1b8d48048d

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7c57410fac52b5ae0e637da24b0a85fd542503d3d464191b9b4efabbc253ce83
MD5 c8ef3f3fe55355858a7eb4d60dea050c
BLAKE2b-256 234075ac7f14ac381c09fa0f2c907d4bbdea2b05aba159b0f23b5512af023ca3

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c6dce6e2422d954887e5307e4d568ae54a4ad5498dd59ffe3a31a76e0d5baab9
MD5 55e21f0ba0f621a2bbf1c9c415fa5fb2
BLAKE2b-256 f52350758ba70705f58f800c0bc87c43c76e8a9f88f38c0dfc0a6b3c004ed8f1

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cd0d77d140a2351ede9ff151fa219e1dd5dc8e0d76d3e488d9371fd33fc36aab
MD5 4d353caf3f8a5205dcd6f42b0b3402db
BLAKE2b-256 aa22fda5d074b87fed53b203fc30ff72aa501b804cf6b51c3a5b732d10cf89de

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: lemmagen3-3.5.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for lemmagen3-3.5.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d1caefb5a7e7ed65d384e1a515d137b736e4bb15d151748a89d78df46f5d586a
MD5 c695a58223becdda3cad9bf8cb4599de
BLAKE2b-256 d54d88af045dc48c91c772bb77f2e6c2d3a8e3350d68b7fdd9702e6f62bf1a9f

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c47cbedc722ff14e346ff233da177ee29ac4ce1e66798b307bd91f4a19f202f9
MD5 9e7aa04187f4ce24a7f952a191c02037
BLAKE2b-256 6463f56e0bfdea5e361fb247dd67d54f06ca545f3496d93cffb587091f6ad810

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b3fce76de56289b8f779b5eb2491d4269b25ab9bed7e7e2d3c94bd05800bef36
MD5 41c4523c51e68d4bc0436578a2c33bd6
BLAKE2b-256 e2dffb5a0222d3569c5262d8c55bfe348480ec196fbc4073ddad8606f818a743

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b1868202ff9c6d6dbd36859b2697a781486da6a9ac20aef31e7f0936d912612
MD5 4b5c82c60ada828b4fc2f00dca010686
BLAKE2b-256 c907ed829646dcfe574e709bc087bc6324c2485fafeb68c9c47f50ea0d47d9c1

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ffd55bfc14b77c7e9edfbb9dcd657d2077c76cab7bd4b52e6e616ac9042dfbb
MD5 30f7ed2df4f6a6dafc0571ab754053f0
BLAKE2b-256 93834e04cc269cc336a0c313c46b2d0cf1b0aae62fdd3d51235f60a50ae089c4

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac5993c576991ddbebe012c02e9db1be513fcc22d2a9aa96689b763c6602d398
MD5 6819e0caf7be13eac756ec1a79aa5fcd
BLAKE2b-256 1f5dfd31f0ff3d255195f6af1cdb9085f119e585d90787fb40b56eebe973d566

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 895c1e0d7b245d2b5c1bfac796ef309f120501c608b9d4629ab6fe60f13808fb
MD5 e509dfdee10407a02db0fdd3a430c908
BLAKE2b-256 f2c186f4bada3414ac3dbc89f03ae6fc2e56f165aef1aec5e4e998b9f2e2f7f1

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2e06049b0a12749a582d342313283bda57984fa9e2920f5cdc0c1da5125aa1fd
MD5 ac7304941bdb8daa234abef6b84147bd
BLAKE2b-256 239afebad3506892e8b8b16e21f4766559855e671581e31980d707727a081c3f

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: lemmagen3-3.5.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for lemmagen3-3.5.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 76227c8d36be3b9cde0fe1e959dc44a062a0880d1b2a92bad07b6a1e990344d4
MD5 5f81879a73dba7410f6d163faffa0c80
BLAKE2b-256 860ff053b238523b7392377ab72aaddd6ef3d807afb9ee3fcbf5a3c09e1ba9f9

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3ca2dde797b33d415673b19be24df0e8d71c79afd777a9e08584900a340286d8
MD5 9d76b82378f77ad207df612ec64ac8f5
BLAKE2b-256 726652a6d1201c3a92d698ff7ad3c3a4c4214392c7e39bce0f28e67727c5d6b7

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f8cec513d50d8fb6bd670d1a694c42493265824a07324434f53477bb4a63a94e
MD5 78467558bd3cb82d6b173d85604c1bc4
BLAKE2b-256 8a19e64bbf2bf13e2c6d7ee56c3e13b407f13da244a30f126f3d4b121c1cbbae

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 716e841e3554f0a51b4f54bc88e83026f8fd523566163c0777b922516a9af3bc
MD5 0d95fe55fd134f5700f49399542c8aa7
BLAKE2b-256 1550286f1be2fb6383b896b59a56eb63ae50b22606b479d60411e83f0bfe57ab

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8fe9f30f7a9d228eead6c486a450e0e23e409dc48959ebd7904221f28c0e46ba
MD5 197dcc616c83115d34cd9b1da04096d5
BLAKE2b-256 d6a201e70c447adab2c81f2d882ce3fbfd291e51a910833bef6c682f1b21ae25

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09eb1dfb07a59ad803d8f71464b5704a0093f735901b3d859c700686dd2cd08a
MD5 9c1fde1e98151876188d66033f254b52
BLAKE2b-256 fdba5f467d0d926cf8611b84a4ff9bde778259c1de821262ceea89852910d12b

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2c59ed81e0445e6530d42763f72a5ea726bece1b6f5693e05a427272bb8c1e2e
MD5 78defa2d4bafe35642f15361e011f8dd
BLAKE2b-256 b8a74a67dc4be7a743b686f77a58bd058b3f986909561a2f1fbd95b3bd11c57c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3793a704417fd4e31e0fef5bef3c0b5720e01e50fec5c882ffb6ef5af65fb70e
MD5 de789611d96d323b27bbee619e6e8d2d
BLAKE2b-256 4cf7337ef7ca5f660241191d1e5483c06e23100bd53cae3de1e5aa2b5dc505e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.5.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for lemmagen3-3.5.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d13b95cbb5e7c0911d28a66e24b41afb86794da8a1e17516e8d6d55ea7f7aa81
MD5 271e45fbb31a27385fcc7d9dbba68a11
BLAKE2b-256 9176a9192e1fd72994e4d270dd747f9d444dc0a25cb36947d872b8243e264b5c

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cc76fb04d2576731892ad6b9d3f5280104e35cefca6c687e7e76dda1b9c4f61b
MD5 1dcd2547d8cddeb3d32551b084025329
BLAKE2b-256 03d9c02399b055c1da7787c78dec592d8f638e07264a24caee539c554b44d61b

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f5ac4d0a722c34666513c48474a18ddb3eb2d34da41e25d2e6bfaf2ea4f0aff0
MD5 729491598dc93e46475e9a8340e91b0d
BLAKE2b-256 4b272ddf38c5932db70ba414b1c87af5da69ee137cc259cb9241771c095eed52

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02ee3c234f062a81d3a14ac2fc13504809755365607a6b266faa244ea5d6781f
MD5 e7eb08ab5814bb7ab37839d9aefd4b1c
BLAKE2b-256 1760e8ffb37dab59c26e44c81661fb14316eaee807f2e2a828d61978dfe6c8a2

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7c524e70ed3b7ff5a5f6f218f7afc8797e730442855d90d32d9c1b2a4dcdcf43
MD5 c613ff2a575132d5a8b4616fb0850981
BLAKE2b-256 3f5d6e7492c7c53ff6200c40ca4a542116cc26ace337e69ba02974d5526aae9f

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 105fc7ec4613f42cee8bc7c57fa0ab0fc99812278697e79b4d280bfd1902afa5
MD5 606aa958154beb7b8a44376dda6aeab8
BLAKE2b-256 17f68d89886faa8b636a5c849d73f69d34d864c3697199ad3962cdcd683844fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8ec938206a4d15762f657e80e315b097c5cd2312d587d04c4bebfc80c25a18a4
MD5 e7f109f07ab43e09e993de96af5eedd4
BLAKE2b-256 793882178d07e83577a0f05942bbe9c1f3c9f0acab277238b36b9014ade999d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.5.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for lemmagen3-3.5.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2a3f56df9b0ba886aae144bf331d4d78006daa5327c7f51307e4af8483f03d92
MD5 ef334e62531e137508b4479a7231196e
BLAKE2b-256 13cd7fabd8be1e1a71dd37934030bb012177eaa246b5babf17981f4314f48881

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.5.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for lemmagen3-3.5.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4c49515455e5392aec7bd6cecf9e0ee0642fbb361fb340159ca08d11c7774f6e
MD5 0c89434737fdb954645143e00fe3ecaa
BLAKE2b-256 8fd2ab9107b9c05ca370b055bd5c27bcf9483d82ff884edb241232ba7cb0619a

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5c42238a0e437a7abb58465f26694fd7e9352a3b5bb30cd8a3a06a439a05a4dc
MD5 90410e499705553e0d95c78ac65264c4
BLAKE2b-256 09aee4bcce0a4a4caddd8f3e68c08df1353709228fa719e4f27ac0bbdb97946f

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 115a6363dd0a94e1b6c7016fe009d768c65fb5848520ecf7c8636979f1551ca8
MD5 3c3f4734e0697159b58531ea583f0b43
BLAKE2b-256 acf30fb543de7d5c501af3d8d6fe74a5c0d98c7d8b8b661f64eea6e1dcc9c556

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e70aa8c94444102f6f688e132269dadff290a37e6c67d1e0359f03534c4dcb94
MD5 946056516663129bc668d95a04214ba3
BLAKE2b-256 8163e3761c25a9beb080cd45289425e99167c46c84cf16059450ce038576fb18

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e87f9040f956c469a1d2f8d102a6691373cbb57d0a15c9c32d5602ba35de8015
MD5 c0f8c6191dc39f2d32d3976631727fe5
BLAKE2b-256 4d6906524bd570db7d19260b439dc8c3822ece9bb19cd507aea1e1266bd59c9e

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4404ee0b5a17c19369ca7bfd8637a36cb2c48906d1c492b2171296798ab8e09
MD5 4f9a935bde2913a5438f1a8f1ed4335b
BLAKE2b-256 6f741a52804acbd37237375ea1994244438cde85b7f62ea487831aa730d26cca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c09e16b647937f697b4331b0cbea66c906b4b79ee3bf80d9f9301b948fbb40ad
MD5 2ee963445053fdaaa5c16ecc25467414
BLAKE2b-256 0268b42815b8611cac8aed91724b9427660decd608c38f1b8a81457aa6b6c478

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.5.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for lemmagen3-3.5.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7f8a48c990b7ecad8115191919cbe297233ff9cc41ea31a82e7edd1d8582624e
MD5 a78a8aa9d2322ccfb49136a78dc4a8be
BLAKE2b-256 6e746a007186ab812f1a5d5664f9dedcf238e535ca825f1b1dcca36475cf8f96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.5.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for lemmagen3-3.5.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7d3975d5b33b37a6eebd64fa61c9188e3cfea2e2c0f25d9e09dc4900a263c3f4
MD5 3c532ccaee1366cfd55621ac8a37518e
BLAKE2b-256 3f97cce35e6f7ab891e9ffc781b244be5b364f3239334605a6aa3c2d92685942

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 13a99aaee4aba85a693c968e2602ef60b2fb5e0f2d09817c4fcb92182a8ea2b8
MD5 d2395d1ad82cf49af7b31f0eaff3d924
BLAKE2b-256 1cb42f2f98aebce024c450296fb67dfb5beace43950344c1c5ded7f6f2a23102

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2bf4f52ec268795007cd2ce1c19f1ff875591198841b9d233f1dcfdd0cac7f7b
MD5 6bf39779c92166db679978f0aa5750a6
BLAKE2b-256 5c8f8dd680d6ef90b42ae5d74d2f6251e47f035e13fc311b970676c3578f58f8

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d38cf0c96ed58c9387bdff627625349b24fea712d38a4ce3585c140627eaa8c4
MD5 1482f541248f4f9c7a1be31613d1ac14
BLAKE2b-256 aabde12aab9738affd55ceeb334341c9774af8d8a665035cb689c549b512f723

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 019d83cd818435666482c007340b33e4dbc733cddf319d0771f63b6747b96696
MD5 fdf5de9e1e7e95dc2cd06be357ee85a1
BLAKE2b-256 16ca203d02d1b52a7c950059fe2a36b2dcca89e18cf8838597bb01ba5c84fa13

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af07843dd61adaa5ca3f4339e486b3029f5ba0292633813a16b0411dbf53f0a1
MD5 a4e670e26a6147eb01cd024769a8eaab
BLAKE2b-256 43ae1c40832f015d703e57f48690440f1d5ae1fc793de273dcc77003f3e53962

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.5.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bbdc07e92c964b6596e23804237383fa579d9b328910bee9df9646c751bb43fd
MD5 9ab770f4950a1fb26d8aa1720d3c5208
BLAKE2b-256 697c442ea53be337daf4b77dde4dd067a8c3810b2b0ee54e72956cd1e0f796ad

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