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

Uploaded Source

Built Distributions

lemmagen3-3.4.0-pp37-pypy37_pp73-win_amd64.whl (11.7 MB view details)

Uploaded PyPy Windows x86-64

lemmagen3-3.4.0-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.4.0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (11.7 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

lemmagen3-3.4.0-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.4.0-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.4.0-cp310-cp310-macosx_10_9_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

lemmagen3-3.4.0-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.4.0-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.4.0-cp39-cp39-macosx_10_9_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

lemmagen3-3.4.0-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.4.0-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.4.0-cp38-cp38-macosx_10_9_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

lemmagen3-3.4.0-cp37-cp37m-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

lemmagen3-3.4.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (12.6 MB view details)

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

lemmagen3-3.4.0-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.4.0-cp37-cp37m-macosx_10_9_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

lemmagen3-3.4.0-cp36-cp36m-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

lemmagen3-3.4.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (12.6 MB view details)

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

lemmagen3-3.4.0-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.4.0-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.4.0.tar.gz.

File metadata

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

File hashes

Hashes for lemmagen3-3.4.0.tar.gz
Algorithm Hash digest
SHA256 a7e7d16484704a0b99ed9f7ae2782193544197fb0fd9d49c6d131810c80c0e61
MD5 55bdc08b44ab322a3b0ed64f3345a6e0
BLAKE2b-256 dfc497a7de461b0622da33ef861d4e8d16ec961241b490e529a56d024a3d7e24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.4.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4141bdaab935f1ff7533a2d69d39f30c0529c879bbe594b5d28de009ab5e2e87
MD5 4c948f6566e84d187cc99e7b8dae4726
BLAKE2b-256 08b96d72bcde68539ad94184dc58343540c339ea431b8a965f6a8d25dc54cfaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.4.0-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1168870e1e967ded9d5efd541e82ae4e33c358ec49a4be642f492bb12b8840b3
MD5 c5898939cccac078abd0c72124af1394
BLAKE2b-256 1da4855fb3608d558b1c933cf40435e442da5ab9a6ee65208580f4c047d5006f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.4.0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cdb9d134ef5adb5cf9087159b1b97d7a37908bed90342119199fbfb00681a395
MD5 51a3bb332589e3b0264b181d12d106ee
BLAKE2b-256 daf08bfe893213d2793a090bfcc4833421dab2ee94a56ea4a586c44d9d2ef069

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.4.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 53396fae907f62d92a80a1633f552bc98513ce1698b4eefc95001a6758c2905b
MD5 feed8c95c76b72845b2b2658af2b537f
BLAKE2b-256 e3af1d87bd7b6e658add3c61d25c4a3fc7a212249151870d21a192b3333c3ff0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e5577712892e935c36ee2f7e7a7f8a422cf2d035225e2a066f3f2a71ca04a4df
MD5 e184cb1460d720d9d90b54d704c87694
BLAKE2b-256 f079c37684b59a031e7b0e6f75eeb4c334967c4f3344b2700ae54e9e7e9051fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.4.0-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.1 CPython/3.9.15

File hashes

Hashes for lemmagen3-3.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a3e4121bed113e24d8f61a6dda2d1af322a4514f0e019d22f7a5dad9a82a923e
MD5 bbd8ff9834bc7f644198b2586811cf50
BLAKE2b-256 d365aec3c8dd0ba94c65f2b1c75b364b82146f64e7814805faf4547e2fe3514d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.4.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a81d1c88d56476b8f6c9c93ff01011c5b27b2894508920344e98611431a5ce87
MD5 7fb059da170855a629ba60c679d02e05
BLAKE2b-256 71cc920a29b8e452b162af10f3b060c0f4874c40574b697abb28d019deb2c416

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.4.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ea532acc620bf87771bad09e35085514efdbb2a0601d8e50f838de8a65cc696a
MD5 d6934c7c457425e7b8a893d23be05abc
BLAKE2b-256 6742721df51dc09684551265809a440f307f1c0ac6178a57168c645a39551f64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 46b94bb7735ac829d65dc047eea1d669a31946f726f35d24796c82097a4d3a40
MD5 acd29c23c57dd40d246f33867e1f45e7
BLAKE2b-256 c73e886c11ab3bf32195cb2a345ef59dea6fddc4518c74ce0eae2b5c567cf934

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.4.0-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.1 CPython/3.9.15

File hashes

Hashes for lemmagen3-3.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 96fcc94a665991de8966f1ce8ea4576e9267a209217edebac16a507fd5fd5b39
MD5 00a6ae07a71c7e2f75919b3048ce151f
BLAKE2b-256 9821796683ad64d4bfcb9e659c2ec3eac2db39195aa1e4266dcb97c3c0dab8d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.4.0-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.1 CPython/3.9.15

File hashes

Hashes for lemmagen3-3.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a003331725d0e0b1d0a2f9205245e5571756a86cd8b6658984d9bb5812fde726
MD5 ad3fa5fc1dbaba20a2694d3295396eef
BLAKE2b-256 bdd4abe77bf35c8eab4f54339a9fda057c5fe2455ff71892ac4b18a1d9ed03d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.4.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2db7eb17bc284e6a743fd7aeb32dc5936591bb35cad7bb3691427bb9e837c8b8
MD5 0ad94ad8f889c336742c2aaa88143273
BLAKE2b-256 15058970ded53f351b9a1954edfa2630b387150f746f2fb75c90a5796f990fc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.4.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9f16821abca7e417464142ca69aed88adff891b9a9f12e7e9a30ede9586029dd
MD5 1aaf7a7abe3b72bdd8b8d5a37a836118
BLAKE2b-256 4ef76a420e153255547109782c3f9c215363e8e9e45d50107c9d14f95c743384

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1502a0d469d905627af6ed53ac077aaeef7273f09c0a99374587bdf1b4024343
MD5 b1d4a713cd8efb372a17ebe17513a559
BLAKE2b-256 db6b8ada02fff4c37c4743b8cdac9e1bac3f81f03266a405ab5cd0f62a155acb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.4.0-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.1 CPython/3.9.15

File hashes

Hashes for lemmagen3-3.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 79daace322dda35421e9922de4f6fde4fc96b1ac655db1a271fcdb34ef1b7dff
MD5 624b34061de5767e4c6b8d0dee8fa69e
BLAKE2b-256 92ded1f07a8052bfd7d3958455a3ccde0b73343a0600a1d7aa42a5b37d672d38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.4.0-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.1 CPython/3.9.15

File hashes

Hashes for lemmagen3-3.4.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c8b6967b767f9497d0bf79cdcf5b6838d4be4c72b2684860756bcd6f341b59fd
MD5 29aada993ad7c780c1eb85d6ebccf7eb
BLAKE2b-256 561bd68cc597af9a09198389883d87f1b83f85ea9125b154e31d5aaecc42fb91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.4.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 23e1649ea2d383bee49437943349d8f85edd617bd54bf4117378e438d52873d5
MD5 40895aa7fed76eb7925621a54321fe38
BLAKE2b-256 f21fac9893030b64b76c4caac282ffe2b8d6a14c15c5a1de5b73e76aa5558588

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.4.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b30a174cf6acb34bab54e267829b648be3dbde611d66483f259ce63ab02a2bcb
MD5 2b8af494846755306981d14d52c9ddf8
BLAKE2b-256 e16c4c2a9d4f2c9ea895a631a2d0e36f7bcabdfb7a3144a2e839a31fdf673160

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 60a2548a668eb1b30b20cc69d26c24c47d7096ca4ae4c7d08eaa9fdbf80f7e88
MD5 acfd44f9d72c5d21ee69477b9f056af3
BLAKE2b-256 52a1008bc98f0ad9b1333e6f3f243742910623d927b14e806fdbcdb4852964fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.4.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 107f344777f1d0018f74f8f8695052b98682a7e27de8851a5be6859d41bc4fc6
MD5 e7253285a68c7cf92a76ca2ad3bd53dc
BLAKE2b-256 c51fdc4fffa55f1ea6aa5194805a71b93d83ad874f95d444b42245edefbf6b90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.4.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for lemmagen3-3.4.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7212702c7802a57d231d9712736ae29603286bb1623b438a276f0197e1ab9de9
MD5 c2c19f3ec23d89ba5ceabe8e53ce3d8b
BLAKE2b-256 1599fc2b1309a22a8cb38e59cfe51c8721807c8bdb9876aaab5dda7a548e7619

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.4.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a2d6903fc3c8e27b41aad2c33165a666b34e67023481847f25a18942fc712be4
MD5 d0daa1b4fe18508c784858942e149a2b
BLAKE2b-256 3afffa5c4bea05b7bd76ea3783edc7f81585fb55bbf8d9f72904341009d1bbcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.4.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3b713c9e4081c0aa888ca09f89cfc209fa6245346a77a89ffd23b0386a1c92b3
MD5 88b02dabc7b8e87f4f027214862e4baa
BLAKE2b-256 f7652b317a90ec87982fa3070fa1da3d8b97e1b9eae4ac79ac87d8606e86c213

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d627a5d1cb57cc98d0493f4669319a4f5fd0f68e32bfaea73beed7acb30dddef
MD5 cf617335d028e964f4dcc2b2ce3a0ac7
BLAKE2b-256 c74896e6bd26631ec70f367ca31f9ff456b4862bfd9026ceda7490afa734efe0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.4.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c6d9b233b0f6d091b1b97479d7ae043b10eb5f5243742c9f26d0118a1df31e8d
MD5 9e1014c62634c54b65881f5c4978b489
BLAKE2b-256 fcd1f08f04383593a0604685e40f7f4af0dba3cefab8941cf0ac2a70941744d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.4.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for lemmagen3-3.4.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e6d6fff0ef468f0cc32c05f9eaf2ec01c22be407ceb74a109388fc2ca118a6af
MD5 47f0b9e4674639ee799a4f7933c9d3a3
BLAKE2b-256 d7421bc1db273008925382be032eb38d2ee3f3727cbd1f679a14b2dc419ec635

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.4.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 76d6ef3d2d3e8b3963e00022a45868bca49d3b647f1bc27dd5c8a66475e527b6
MD5 1c85830fdc856e8001de5b5bd4104e3f
BLAKE2b-256 4c4aaac808ed2bddec46a372e1c03616f904aa6c22ac23a6bedd740a58164c27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.4.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 578deb7733ce59790348870b596fa433b34a487032ecd2d2039f682d169fb2ec
MD5 517619206506e93727b5499df69ead19
BLAKE2b-256 e6a60da43490f2d098b33bc7a7b02b6479160444d03e57440796659340f3db8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lemmagen3-3.4.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5e48113c95e851910f0593880355d239cb4ffe0c388d0377f87a90ce6defdd46
MD5 79f7f00181c895a49e5a3d8021a11419
BLAKE2b-256 891ed2dba027a8e2077132e9f7c7f99db89794a882dddeea9583b34cca84ee5f

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