Skip to main content

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

Project description

About

lemmagen3 is a Python2/3 wrapper for the Lemmagen lemmatizer.

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). The models for Slovene and Serbian were also updated. 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 for python 2.7+ and python 3.5+.

If you want to build it from source, you will need pybind11 and a C++ compiler. Then run

python setup.py install

which will compile and install the module.

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, 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.1.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.3.1-pp36-pypy36_pp73-win32.whl (11.6 MB view details)

Uploaded PyPyWindows x86

lemmagen3-3.3.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (11.7 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

lemmagen3-3.3.1-pp36-pypy36_pp73-macosx_10_7_x86_64.whl (11.7 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

lemmagen3-3.3.1-pp27-pypy_73-manylinux2010_x86_64.whl (11.7 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

lemmagen3-3.3.1-pp27-pypy_73-macosx_10_7_x86_64.whl (11.7 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

lemmagen3-3.3.1-cp38-cp38-manylinux2010_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

lemmagen3-3.3.1-cp38-cp38-manylinux2010_i686.whl (12.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

lemmagen3-3.3.1-cp37-cp37m-manylinux2010_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

lemmagen3-3.3.1-cp37-cp37m-manylinux2010_i686.whl (12.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

lemmagen3-3.3.1-cp36-cp36m-manylinux2010_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

lemmagen3-3.3.1-cp36-cp36m-manylinux2010_i686.whl (12.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6mmacOS 10.9+ x86-64

lemmagen3-3.3.1-cp35-cp35m-win_amd64.whl (11.6 MB view details)

Uploaded CPython 3.5mWindows x86-64

lemmagen3-3.3.1-cp35-cp35m-win32.whl (11.6 MB view details)

Uploaded CPython 3.5mWindows x86

lemmagen3-3.3.1-cp35-cp35m-manylinux2010_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

lemmagen3-3.3.1-cp35-cp35m-manylinux2010_i686.whl (12.2 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

lemmagen3-3.3.1-cp35-cp35m-macosx_10_9_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

lemmagen3-3.3.1-cp27-cp27mu-manylinux2010_x86_64.whl (12.4 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

lemmagen3-3.3.1-cp27-cp27mu-manylinux2010_i686.whl (12.2 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

lemmagen3-3.3.1-cp27-cp27m-manylinux2010_x86_64.whl (12.4 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

lemmagen3-3.3.1-cp27-cp27m-manylinux2010_i686.whl (12.2 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

lemmagen3-3.3.1-cp27-cp27m-macosx_10_9_x86_64.whl (11.7 MB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: lemmagen3-3.3.1.tar.gz
  • Upload date:
  • Size: 11.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.10

File hashes

Hashes for lemmagen3-3.3.1.tar.gz
Algorithm Hash digest
SHA256 7c439329a70679f990c559bdd101367970f5954f3298f73d0a5d6373aabdb9b0
MD5 f118189d0f3465cd2d0838cf08421496
BLAKE2b-256 1e24b269d93b92128024577779391d09b4ae841b09526311edca0cc85840a13e

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.1-pp36-pypy36_pp73-win32.whl.

File metadata

  • Download URL: lemmagen3-3.3.1-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for lemmagen3-3.3.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 c28b88862a26df9123d8c6ebf04d13c9a0dc1326c2bf78db9c2297922ae3ca90
MD5 c8b51292cc1f91e6728ef23f85679b99
BLAKE2b-256 01e0019004b7a027c84464086285a4d1dd9a44a5c7ee200bc2eff4edaeb25a6c

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: lemmagen3-3.3.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.2

File hashes

Hashes for lemmagen3-3.3.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3a8e465b16620ae0cd6ee7069f27bb63fbaae508c06d863dbe080b0b8fcbdb03
MD5 1dd50381e2097504ffea9859b205a591
BLAKE2b-256 eb0ea6a4333a1b79ab9720d72544f1687aa93abd949d1c72e7d9f7518f1a7897

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.1-pp36-pypy36_pp73-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: lemmagen3-3.3.1-pp36-pypy36_pp73-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: PyPy, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for lemmagen3-3.3.1-pp36-pypy36_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e02ce035609b4be5c467feef0ec95a81847707dcea344cf3017e03b934bf9f00
MD5 7359a6c9a110c7bd8687b1d5827c6cee
BLAKE2b-256 e3586a57a7c41e58e4ae8621fe87d78d1815d248108963b5d3a1871d61b0f0b8

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.1-pp27-pypy_73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: lemmagen3-3.3.1-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.2

File hashes

Hashes for lemmagen3-3.3.1-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 27644b3b7e3b416054c6d8922aec6222ede0e607fc3878a1260ce6e6eb22386e
MD5 101d163e9146ee97b10b96409b4e9495
BLAKE2b-256 59acabf695f1bb0098ff843a1f079a186103b9f9428746e33c8ffb7c19a1d0ae

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.1-pp27-pypy_73-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: lemmagen3-3.3.1-pp27-pypy_73-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: PyPy, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for lemmagen3-3.3.1-pp27-pypy_73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 536a5a49a4cff18c5dd1907cf3fb89a0cbca9dd9a872d393b58dac2e4b397405
MD5 ff57448d158f0710fce6378ed4ea979e
BLAKE2b-256 1c5013257007bf799e9b6fc90dfe1f4f66a86d1732ebb8f674b0a47738987438

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.3.1-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for lemmagen3-3.3.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 04d21b8cfda266caa589eb8d03fd1e0a583f91e5043a371dc39ba786f6b0ab75
MD5 a7db33659b7ed853e129422ad1b08ec0
BLAKE2b-256 8838cfcc899b0e2cef79cc0b703b95ecd1b2090ca04b75de2b9a0f65211113a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.3.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/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for lemmagen3-3.3.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ad719854dc2cda122fc9871a93e13a4dd53af6f2b45fd3eb82b5108ed6e7aca2
MD5 69aa513d2f4f4fb95fd9ff2a2b794f2d
BLAKE2b-256 1ca408e50d9f59f6cc89af2eeedf64860e951194022fa01bce00b4e64773ea40

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: lemmagen3-3.3.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 12.4 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.2

File hashes

Hashes for lemmagen3-3.3.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7dd725fd759dab5f959f1ad52b7173d1d1bd32b084adbe7d6d256743d3f96eeb
MD5 d1643990627a734a264e3cf4e786037d
BLAKE2b-256 b8baf0e0a82310a2526a5b2eb38e1fa4b2e576222439da4e013ec537b61bede5

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.1-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: lemmagen3-3.3.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.2

File hashes

Hashes for lemmagen3-3.3.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6e7723156020aa243aba4f06dcd647d9ca4038fd0a9d646e72ffbd302b5e38c9
MD5 0897737c28876f40ccdc0e0daa002aee
BLAKE2b-256 980e13b60960aa9b8d0cf18d72b925d1141daa10310d16b2b10ee97e2c42f3c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.3.1-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for lemmagen3-3.3.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9321634de00a0acb96fb9da92d2e29443900df2a2c04d388c3e578d900aa2dbd
MD5 549fdc31899e1e6f8ad5a7722f3964cb
BLAKE2b-256 7efdf6adc213987f8d199e6ca47025d2b74430db764e51e653d2238e6f6b2dcd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.3.1-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for lemmagen3-3.3.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 81f92c4861cdcba2250e176cfb015de16ccb571c6b3476a28b43b34040b83805
MD5 425e0db0327f2e1cda3ad129bb43fc09
BLAKE2b-256 7ee200a7a6357c33fe9e945ea640db32351574aa5c2d75154f4cd8639d4dbf4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.3.1-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for lemmagen3-3.3.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f1b9619f2ead8f0379f4fa456f0ce9909f9838d9a5f9c7d957f51fcaa7b4883a
MD5 bc6b7c3d0bffaeee3616d4a839100484
BLAKE2b-256 ebdc2f18c90a8583a0615ea737fad045f0fa537a26996348c16996219c51ac26

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: lemmagen3-3.3.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 12.4 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.2

File hashes

Hashes for lemmagen3-3.3.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ac8b5d68ae8b863e7e66b515b2218b507fc074e11824cbad3ba93aa477a26b06
MD5 b6a9b2c925a4336267a8dafcbb07da54
BLAKE2b-256 4d80b0d1f328a512fb54aa120f491f14ebba18add825908b56c3c7da7a1fe542

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.1-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: lemmagen3-3.3.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.2

File hashes

Hashes for lemmagen3-3.3.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d47e0fefbe425b73cb7d9be8c869f66094f88fbd11778e6e76eef8c8f9914298
MD5 92500a9a61bdb1f48fca1bad35e0e98f
BLAKE2b-256 ba3e56d41000952a0b2d08c8d4832ce10318daa335ad3e1bef230d65b17d7d92

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.3.1-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for lemmagen3-3.3.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b32664e1b23daba24a8ad5e850a0a938c8876f6a6af3beb98c26890436a1664e
MD5 fd7603bf82feda4ba72d067bae84b408
BLAKE2b-256 06311f41117d1414b38603c924b17225c63c0f2bb4844eec8175b2b61a4fc11d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.3.1-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for lemmagen3-3.3.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 64640c648ee27bcbbf694a6192ac388f19fda5a43d6cf10ba64febaba4b8b100
MD5 407d049aad1762f2e75bbfb5e97c2ac2
BLAKE2b-256 33a9a9722e06e63483a6df433b1c792576293c3f87a4a1a1a6a5726955a3f3fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.3.1-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for lemmagen3-3.3.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 22fb726ac63a3667ebfe3ef2d88982af3d7fd4f0e17734b937eec98eff1d197d
MD5 67aba0eb6a948e3a606f94937ae2887a
BLAKE2b-256 b305b8fb3faddbaa347bdacb02316afa0b771105a972462442723c6e9fc3bb6b

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: lemmagen3-3.3.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 12.4 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.2

File hashes

Hashes for lemmagen3-3.3.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b02a304f6132ac0fa2dd664631948e73af2a345b497b3a74d82630d3ec6f19ce
MD5 78c268a8b1d03f9ff19f30fee60af5a2
BLAKE2b-256 bd2d62bc5d55ae18126db264fb0cd78ad3f0a70cdac3f8919702a620877d61b5

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: lemmagen3-3.3.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.2

File hashes

Hashes for lemmagen3-3.3.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c4b096ad72119083fc5424eec6c85ab699b68eb7bef19967b3d5c4d678177b6c
MD5 66872dc3b995c80de7eec4ee2a7cf72f
BLAKE2b-256 0b8f118b7bf00084f3b8ad9ac3f825228e98e2d0af25bd824888259e05334f99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lemmagen3-3.3.1-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.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for lemmagen3-3.3.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0f9c018d5c19f5fcb3459d66e684e0e02ade75e0f67eff73d7a72617db63fd30
MD5 61122634278a364aaf0daa818f347e29
BLAKE2b-256 606c8557a0132a3f87dca52ede1b80135d1154a098b0570440b43b6a6fa56a01

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: lemmagen3-3.3.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for lemmagen3-3.3.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 9a7bdbf51ab69defdf5e4bd93b75022c339d90f04ba677fe54599fd2c9b0f088
MD5 a8ad2fe031e513cd2cef3511cb52e02b
BLAKE2b-256 28486a80f73795f1910e5be7a1ae80a6ad18d2bb0aa1dc824886e78407a5eccc

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.1-cp35-cp35m-win32.whl.

File metadata

  • Download URL: lemmagen3-3.3.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for lemmagen3-3.3.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 a0d0713165730f96c0a8380ec5f2816dc24844e28ce026147a5bd1fa6eb10e79
MD5 14ce19914a58a56c73f06c8c2956c2fe
BLAKE2b-256 674e4423a2abcda7f8a858a9edca3b468612021d93a214397e18ebbc149cac74

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: lemmagen3-3.3.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 12.4 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.2

File hashes

Hashes for lemmagen3-3.3.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bda9f724208fd5c2425705bcb24719fd73778e3a3df2b8a63a7499b333ccd7b2
MD5 93d35e90bfbcf7b2b2ebf429c0f53d15
BLAKE2b-256 9dc0a07745ac8addb955dbf5c978791e37dd6edb848d901c5f2771e48d4261c9

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.1-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: lemmagen3-3.3.1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.2

File hashes

Hashes for lemmagen3-3.3.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 44f8f7dd7885c6fe2901a103f7aa0f88f54ffd373941c354e82453d20119d91c
MD5 4af0f8c497a5c42e9c711aa42c74d068
BLAKE2b-256 d30bf77ad8a015c31bfa8f35b43d8f078004c294fdaa4d7c0802bf7838ef4ea3

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.1-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: lemmagen3-3.3.1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for lemmagen3-3.3.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3cf559f386072ba682d751f29cdc5aa23729ddd9f827f57e3809c9223b7e5ff2
MD5 6ea6d5dc17f53ecbfb77a19f82421574
BLAKE2b-256 b88b956b91c0c13f8fc8bd575d5d0e5ddb125676ce4e4eace51f629b6e43daa9

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.1-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: lemmagen3-3.3.1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 12.4 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.2

File hashes

Hashes for lemmagen3-3.3.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 54eee0cd986e7ee33585ff258ade0be8e83de67644716a79d163664fb56d48f3
MD5 8f301b5cce80e67a9d4a07cd2a4cdca4
BLAKE2b-256 ab8d8ea588b2a46fd39da0ef7120cbcc7b129567f698d3e87c25f68764b20999

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.1-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: lemmagen3-3.3.1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.2

File hashes

Hashes for lemmagen3-3.3.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 55ccb1db6f039f2f6defe5f0d4adc1afc0cef2689479cac92789435e68aa8b26
MD5 b9303b86f17a28c7c54da31094998178
BLAKE2b-256 60703d812d929d04224c049f61c8731926861fe6a1767046699a61a6a76b45b9

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.1-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: lemmagen3-3.3.1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 12.4 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.2

File hashes

Hashes for lemmagen3-3.3.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 15077195c4027c8ecf93fd659a0c5752ebd340a049de39397677211872b71a2e
MD5 5a206a53493fd105af128820a4a01410
BLAKE2b-256 c3414931e633fe828f3368106f5fdc7b68715df4de8bc104dc66b09b3b6cca7f

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.1-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: lemmagen3-3.3.1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.2

File hashes

Hashes for lemmagen3-3.3.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b282de79f9e16d59054d179db043596a3d239f9c5ac66a1d63935cdc01a600b3
MD5 10d4c4183c6f68b4fd1d2a8bad2d056f
BLAKE2b-256 1529bed5f446ecce4431d01f32e33d25c481da78f02753f497baee2b2274b972

See more details on using hashes here.

File details

Details for the file lemmagen3-3.3.1-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: lemmagen3-3.3.1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for lemmagen3-3.3.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cf3670784211c78eeceeac6b0e3f867b0fdcecb1114fa82724633ce587eeaf55
MD5 1c4a116b9cdf9f1985ef22a2dca142c8
BLAKE2b-256 a8c003fcbf0b293dfb795c416382a39c2453187ba50b8274f87fcddcba674b3b

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