Skip to main content

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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

lemmagen3-3.5.2-cp314-cp314t-win_amd64.whl (12.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

lemmagen3-3.5.2-cp314-cp314t-win32.whl (12.0 MB view details)

Uploaded CPython 3.14tWindows x86

lemmagen3-3.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

lemmagen3-3.5.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

lemmagen3-3.5.2-cp314-cp314t-macosx_11_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

lemmagen3-3.5.2-cp314-cp314t-macosx_10_15_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

lemmagen3-3.5.2-cp314-cp314-win_amd64.whl (12.0 MB view details)

Uploaded CPython 3.14Windows x86-64

lemmagen3-3.5.2-cp314-cp314-win32.whl (12.0 MB view details)

Uploaded CPython 3.14Windows x86

lemmagen3-3.5.2-cp314-cp314-musllinux_1_2_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

lemmagen3-3.5.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

lemmagen3-3.5.2-cp314-cp314-macosx_11_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

lemmagen3-3.5.2-cp314-cp314-macosx_10_15_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

lemmagen3-3.5.2-cp313-cp313-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.13Windows x86-64

lemmagen3-3.5.2-cp313-cp313-win32.whl (11.7 MB view details)

Uploaded CPython 3.13Windows x86

lemmagen3-3.5.2-cp313-cp313-musllinux_1_2_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

lemmagen3-3.5.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

lemmagen3-3.5.2-cp313-cp313-macosx_11_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lemmagen3-3.5.2-cp313-cp313-macosx_10_13_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

lemmagen3-3.5.2-cp312-cp312-win32.whl (11.7 MB view details)

Uploaded CPython 3.12Windows x86

lemmagen3-3.5.2-cp312-cp312-musllinux_1_2_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

lemmagen3-3.5.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

lemmagen3-3.5.2-cp312-cp312-macosx_10_13_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

lemmagen3-3.5.2-cp311-cp311-win32.whl (11.7 MB view details)

Uploaded CPython 3.11Windows x86

lemmagen3-3.5.2-cp311-cp311-musllinux_1_2_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

lemmagen3-3.5.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

lemmagen3-3.5.2-cp310-cp310-win32.whl (11.7 MB view details)

Uploaded CPython 3.10Windows x86

lemmagen3-3.5.2-cp310-cp310-musllinux_1_2_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

lemmagen3-3.5.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

lemmagen3-3.5.2-cp39-cp39-win32.whl (11.7 MB view details)

Uploaded CPython 3.9Windows x86

lemmagen3-3.5.2-cp39-cp39-musllinux_1_2_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

lemmagen3-3.5.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

lemmagen3-3.5.2-cp38-cp38-win32.whl (11.7 MB view details)

Uploaded CPython 3.8Windows x86

lemmagen3-3.5.2-cp38-cp38-musllinux_1_2_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

lemmagen3-3.5.2-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for lemmagen3-3.5.2.tar.gz
Algorithm Hash digest
SHA256 b6029bcf89a185b71848ee24f81db4abbc7425acc6d9a4d3fab64d84b09c4f50
MD5 cde31e21586d1fbfd4834991a7c4b74c
BLAKE2b-256 46b612d32e343bd965754203df4ea9268a2933a9816a13c8e9a2cf2f804fe107

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: lemmagen3-3.5.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 12.0 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lemmagen3-3.5.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a37f061b59382eb31e4adc382651dad3e0296a3df24414d2158ea5a7252cc3d7
MD5 fec98838f6844a3a2cd8fdcb267f2c5b
BLAKE2b-256 52b606813e59bdaf54ab31255a2936b6ee71542ab51b8a6f327867b69fbde9e0

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: lemmagen3-3.5.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 12.0 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lemmagen3-3.5.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 e71ac6940684a99fd168f56c35422067ad882d7c9f14bee1f7740563a5e090a5
MD5 eb57b1f86d83a1377d4856d9a60f5f94
BLAKE2b-256 584ed2cf72002b90b58ee5bafcf7b8b4664e6f7015f2881e179673be8b5c2f5c

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d17a037ac118805828e688bdc79849c5b7112b8d0d41fd881a31194a9646ee0
MD5 64f82440bb2c6bcf7a6243735e18719b
BLAKE2b-256 f866ff963c6fd9e7ace04fc51ff06f84a9cca711e6a7e1c76b6fea61564b201a

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 df52dfb45ef2ececc8cfc4255ca601026f9400ae1b098247f6973c1290f26d37
MD5 722623ba10fb4902e23f994a45cc115a
BLAKE2b-256 3e572720c3ca766efe2376460804bf3217e633c08f7ca701d2a642dfd0ef404b

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34ac9091bdfe49b1cefd51376b4e6a821566f3e7cb51089432722103b77a5c86
MD5 d47c23b15098e8e9ffc2842994a36707
BLAKE2b-256 78fae8cf86a6adf815ec25fb8c980a485c32375ade4284a14d58c337890425f3

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 afb0aaabf1bcabec9273c0251b9189c4ac639c2745d71cbe5dde0767be12e4fe
MD5 d160254b6ef390326e63fdf61918946c
BLAKE2b-256 3a451ae8255a168004d62161fdf77e152b36de38afc9ea4f74be722b6e35a264

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: lemmagen3-3.5.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 12.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lemmagen3-3.5.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3d08b05092d22a32df7f828e704051ad6b70168df6da49c01e4273f5722b7dcb
MD5 53db9eb74ceee8689f13cef6e02286b0
BLAKE2b-256 e282f06ad787dcc1861074f8e4aae31abc115c368a9180953022f8f4253457b9

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: lemmagen3-3.5.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 12.0 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lemmagen3-3.5.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d3adf0aaf7aea2bb8ee94fb474d2e2c82dea97caa01e9b4f63df0bdd61d49bb8
MD5 7247cc137b3d57e93086b1381a0a130e
BLAKE2b-256 e36441d4919efc4be5570a0c872a6be4f2b3fd19d24a3ab66dcbc801564caee4

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 48d7e266e606e94f10595c5c2a1f28261e18489dd7145d00c34dc499190ac44b
MD5 b8eaec585793a66b348ec9ba5cc608f4
BLAKE2b-256 9db59fec516bb7892a5e7fb56fa4aee0985da1e42daf0e83a707c59ab8e33bc1

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d505bc4012042c8807b7f90537b6712878ebed93cd1dde7515a8b98db5cc6c81
MD5 d48260ec47f77ea7b43738590ca79d66
BLAKE2b-256 e362607b020680d4c2497c5863c18eab1ea2f36908e3a6e802092e151050008b

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 962827f5e213c803a2aa59ca72a09186623a96f3f5da14b2b3e84958929f9e40
MD5 cc90036b0f915b516c45293878c1293b
BLAKE2b-256 f33c5686d9f46bbdfbd4f47d61a498635feda47b9a76b64052f5ec78affaf258

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4b6815cb0e0aec347caeda06c1a078d463eb682c0cb09e0772a4671a4076fa39
MD5 aab1e09d84d06de7cb7d99acf640d4db
BLAKE2b-256 6b7eaf6d359fbbecb4546b0a71e22e58cc8a33051c447db9b69c308421ffc0f0

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: lemmagen3-3.5.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lemmagen3-3.5.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 02748cce75252fb28c513b03741b50ac9541cacf4c979d2abebeb8895b951a9c
MD5 12dd7cdbe6be6c9e77b90b5062cfecba
BLAKE2b-256 9fbe9df7f7effef36d688bdbf40389cfacc56bdb0fa1c3ecc0e73a13b1a3e8a0

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: lemmagen3-3.5.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lemmagen3-3.5.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 60985b1f448e8af5add97059cb5e01287ac92f8c252b0213f710711db119644b
MD5 60a22f967803e286513afe9c75c9eac9
BLAKE2b-256 2275554130b33b9b4ce95c255fe3fa9528af426036600f852d34944f0a1a1653

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87b6f34a6b6401dfd2fb07a748bf3631abf35b895fbf4ff62c11e54f251a78fb
MD5 07306ab908da79efafc221bde9621e60
BLAKE2b-256 6878001d9a3c36e72fca858437ec748ce7d7927974f39dac4f3d49b26f67a95c

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e619ccb2d92310bfad27ad06a313029a8ffa3bdf193f74f38e1a74a1dc9d794c
MD5 3e3340bf3cb8139d63715332dad3f203
BLAKE2b-256 1da975a6702a4b9a56592b9b2ef5cd5ce0dae4b6b5e15ab3a1b3a075a79f9dbe

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eba45a6dd1cca9a57fd4af492f1ed1712a1366b13d7c26407d827596b68bc1bd
MD5 856bf8960c0a30dba6c6d88432a79ad1
BLAKE2b-256 08a86142039a6fd1647fc3fb2c9a339c2b5af7a32b88120db1b905cd30d16dd6

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1b44a5ff3315579f6fb283a1045d4fb48658c4e9c372cad4d0cb045146b42101
MD5 5fded56d88e784091dcd02611cf803f3
BLAKE2b-256 1d664cfac09789105cdd980866c3510c54478dab0ff9c9d1097cec3a069fb1fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.5.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lemmagen3-3.5.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b4a23276a6c817058b60894f78c766510dec13f4de028b7be81ea7659bfd97df
MD5 5d9ef549d84233051b653dc7181b218b
BLAKE2b-256 fcb7e0c8ccc11f78e1e6ec4910b506cf5f79e6559f76b6a394a033c63f54320e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.5.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lemmagen3-3.5.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 86580b2dc16511ab02fa179e6e0ea5a9dac79b8fe577c80b87f4c125aae34656
MD5 2b3b24d040d04d0d4478a383030ca6f2
BLAKE2b-256 bd7b2ee2f2291b94c2cce088fca8217c19cb9c4147952102471150bd5eaabfcc

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8bf3530f40858e529b28f6fe302e9ea20086ccb0b77f1ec5950fc3ed9cf23ea3
MD5 398e6227556a50850318749a49ba6d16
BLAKE2b-256 eec80318cefc557a1bb5e559f4efd53fe61e3cda28ec9b824a98e2c867842873

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e54a6bc3cfd6e8cb94f01f5508389ed7a826bdae5cc56b0672ffba2afe10daa6
MD5 efaba96ca2146e8d99cd69e0838af6f2
BLAKE2b-256 154b8ccf22035f1af632941c8d070f9d24cda980f914d0bf0818d861c2170c08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4dc821c79aa2978cb8e965acd0bb0e1f50a323b58a99bfb08f1c4bed0221ed8c
MD5 4b448c5739d635bf99e88d2e056bbfe3
BLAKE2b-256 9e03d479f9a5e00bb7c87a7be0ed8b27f0adcdb977e090711cd461ff5440d6b6

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 74f9e3f509c9a6d7aee83a96165ca53b74eb491bbc74047c3949b483b2d3d33c
MD5 cd69120dae025af41c53a9b6576e0a22
BLAKE2b-256 0605bc154c19062285b589732efd2e150ef4ea62475b83204bde045c0dce4df6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.5.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lemmagen3-3.5.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e1af00e8c5327a50781891aa6c5acc4f0d169997d61228acf1b3aa02ad666319
MD5 3384ec8a4aa7f144bdf85edacb202ab5
BLAKE2b-256 7395caa5041611a28af580a5502429762125030293dafc0cdbc0d820e1023dd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.5.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lemmagen3-3.5.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 03930cab3cf7c669181610874f9b6dd175d393186cc66646be60f40b539d63d3
MD5 252cf0dff133f1fb726021cfdbb7fedc
BLAKE2b-256 8475fe3ed6ef73663d5dbca4ea68e92d5792ea2bb0846f0e303f431f22580ea6

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 18fa3cb9851d8bd17a1987feaaa496754489f754399d9140f9eabf4c3a9be41f
MD5 a2f91fc7998a633609ee16095310b631
BLAKE2b-256 7983b67868487d08e1b2617c2fa7dc3f38d9369f35a974c84c56e4cb8449f834

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3e346c892e382887b220785cf6a441cc83080fb0b2cea905ede51f52da96275a
MD5 d4b32dec2ce223b84b524909c16115f0
BLAKE2b-256 339d8ec6685855e3f1adc2e7706092668bf515564b7e21e9fe678a40db2f32d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb91b2e84378be249d0468cbd970978d272bfc617f7790cde299d6883c2e5029
MD5 aa95bef098cb8f341009783705130e36
BLAKE2b-256 ab8bf98a51ce3d601bbaef4450ba182676766dd58b16d89acb67930d56ae7647

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6d31de7b4001fd3513d306a50b9a539a2c5d90e282d720870ade8295f06988ee
MD5 d4649ec93aeaea608ca3fdc2299ab7dd
BLAKE2b-256 7a51636bd16306016fd7c4441515ab34917e38059c5052176326db6ff13f7081

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.5.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lemmagen3-3.5.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 07355044f3273b6b2a8de5771cc62f6c1f86fbbdd3211022950bdb7a2411250f
MD5 b0a37aae6918a0b5da8b6e35c827dfc2
BLAKE2b-256 89fcd15e3c6f0fd8299cc57acb6a7c5b07a34e5fb3974291795dde36f9a06eb3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.5.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lemmagen3-3.5.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cbcb2dd322766228dff2eed276dd3ab206b4d920fdf2cc0858fb3d9e75600c7e
MD5 0dfe8651d2e12532dd76efa4177fa323
BLAKE2b-256 d479b6cc635aee92b24f4233a84996a1e38af1ecbf246d7185e49e6dd7f556f4

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1417ef837690f30fac174724441ad346f6c6506f1f0708fdcdab50ec705b3363
MD5 4f80e9415c09ce31525f406f7b0ddde3
BLAKE2b-256 3776758e94423d264238c977c1291a9e0cddb5ba1fad1f8eb227889cb1c570cd

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98abef729fff78ca4922f2b38f938fcac565c670c262e87a27ba3465cbd4f35d
MD5 511bc531be26e6d15e1bdc4a88e11c52
BLAKE2b-256 a4d80e3e2cb77a3999bb9680b6975fa17da1a02f8af4a301ba094c47e94b07f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 271cfa6eb5048018ef40be4c0d1841e47f52e94fca7e55c65bf28ed959825bd0
MD5 dd7456075f5b981913435e9ea1b5a318
BLAKE2b-256 aa38b87e904a881a40512c45290c71fee3fad8908b506f0d5826e4f06c51d39a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 095389d04ddc03160d8ff4b13a06fd1f1c8b1ff8522f4d5d331fd5659d136631
MD5 8a0b86c9026fd2d01b807285d323bc89
BLAKE2b-256 9d74ac6757a3049fb810aa87e325228034ef33958b51b7fd2a3eb17794570e5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.5.2-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/6.1.0 CPython/3.13.12

File hashes

Hashes for lemmagen3-3.5.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4f72e8752546b8ac5c163ac93b47dfcf18977eaa1877452225314941dfd58a79
MD5 1c66b59366be14c766efc6705af3e42a
BLAKE2b-256 13e8d99b81c23e52cd861a0d64131810403d5159bffe8c469b3943f368392be1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.5.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lemmagen3-3.5.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fd6a576aef6763fde7b2491df964e378a6839135746260acd410ef905ea14ea7
MD5 7264a5fd0e454bec866386efa3808c17
BLAKE2b-256 66fb228d88c826298e328d3679a4c654262ce2566a98c22f56d5b893170bea5e

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d457ab80b98f25f8becdc88e8e4231d61436a6abdf2a5a019c8542d7a757fa99
MD5 f4e56fd8f9becfc0e19c7eabb0490aee
BLAKE2b-256 3852f91baec264d6df59b549f96d364d4b62d7bbeee5b05cf61059d72a8d706b

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a78a906900f412fd15dc95d712ad61e5b83a34f2957b8c9d1c6b4d1f2a20063e
MD5 6d5dcb0168a7c01c10419ab8fd720554
BLAKE2b-256 4535fb76d9792480444f9ae877b3f7b9f72ad5f51fcaf334d9fb17cf8c49dcdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15fcfce612bab5c170d5268905adbe07e783a070bf7032a639d6a28f86cb02fa
MD5 30088febcd64d768053a24d520551fd5
BLAKE2b-256 27a7e8b8b2c4204deb357730e78509baaf003747ec5fd15722e301e196ba2bb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7ea9694c29cf02342a7abbe514b7e4b1fa3bd536b2385bcd75af58fc5019c2c4
MD5 2c4b6ec983629abf64e5ea5d06060dce
BLAKE2b-256 c31b2140d332b2d921233a7560f145e3b441e493ed6efd934dd612bc0a2a295a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.5.2-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/6.1.0 CPython/3.13.12

File hashes

Hashes for lemmagen3-3.5.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 26d14a6616c4ce86ece0a9892028b8c67699c24f79fc072a30c7d5ff793c0557
MD5 99cfc120e0d9ae7314bd20d5827a3de1
BLAKE2b-256 8d9017c2b8a32fcff32a899b49d27681ce7cfa98bda5a3be35972a8857923dbb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.5.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lemmagen3-3.5.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ed305095944e5d2342e41aa60417d2ea847a619b453ac2685f6cd9f2dcb21442
MD5 de0cbf4671f356a7d70f739cecfca6af
BLAKE2b-256 8bf0454437264375d1a1bb9993a82408d33a0adc4d3b9854734f557bcd1cadfd

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b087347184887c279f9921487dc8e01f0557229b7b413a0d57738be6de5570a5
MD5 cbe24e6733357ff2569c6dab471258b3
BLAKE2b-256 24e8de0ee5e0aa869222a02a358f79b0d112d7e0268717b94656f59e0d527c9e

See more details on using hashes here.

File details

Details for the file lemmagen3-3.5.2-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a74a62ece82f524dda1072a428b783a991eed9736224ac95efbe23a5b5847dae
MD5 e105ec70fa9cea9f1f04a8907a7ea3b5
BLAKE2b-256 75639e5234a790f86bdb461cfb676b517ea8ca5309a7841ecdcd34421e06db97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7eb92249a3157619a65ab04eadb33867129217021531c255ec2754ff223fe55
MD5 af49689097b62e90617596b1d7be4228
BLAKE2b-256 3cfa0cd5aca2f0ca6a6c9d9b8d88d3e5fa5f666c1e1c0f2055d4d2146d46b8fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.5.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 15b89a3e8cd5be7c5d4dab90f6939ece406d58f77b310ae82de94359cc168033
MD5 973adc192449c0b6325b4a12571a7ae6
BLAKE2b-256 e71c44bdc8f08a9a017c12347b76037d39885bfcccd5d643c28d909a3925a1e6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page