## About
`lemmagen3` is a Python 2/3 wrapper for the [Lemmagen lemmatizer](http://lemmatise.ijs.si/) (version [2.2](http://lemmatise.ijs.si/Download/File/Software%23LemmaGen_v2.2.zip)).
It is different from other Lemmagen wrappers like [this one on PyPi](https://pypi.org/project/Lemmagen/) because it offers a clean, fast OO interface built with the excellent [pybind11 library](https://github.com/pybind/pybind11) 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
```sh
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.
```sh
ImportError: ..._lemmagen.cpython-35m-x86_64-linux-gnu.so: undefined symbol: _PyThreadState_UncheckedGet
```
## How to use
The following snippet illustrates how to use `lemmagen3`.
```python
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.:
```python
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](http://lemmatise.ijs.si/) and are modified and adapted to work as a Python module (**LGPL**)
2. Binary models are built from Multext and [Multext-east](http://nl.ijs.si/ME/V4/) 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
- `lemmagen3` is developed by Vid Podpečan (vid.podpecan@ijs.si).
- The Lemmagen lemmatizer was developed by [Matjaž Juršič](http://lemmatise.ijs.si/Home/Contact).
Raw data
{
"_id": null,
"home_page": "https://github.com/vpodpecan/lemmagen3/",
"name": "lemmagen3",
"maintainer": "",
"docs_url": null,
"requires_python": "",
"maintainer_email": "",
"keywords": "",
"author": "Vid Podpecan",
"author_email": "vid.podpecan@ijs.si",
"download_url": "https://files.pythonhosted.org/packages/fa/ab/8e340ecca5c2b0394db41c8789b32501775f09fcd52ec2f5677fb0f0baa9/lemmagen3-3.5.1.tar.gz",
"platform": null,
"description": "## About\n\n`lemmagen3` is a Python 2/3 wrapper for the [Lemmagen lemmatizer](http://lemmatise.ijs.si/) (version [2.2](http://lemmatise.ijs.si/Download/File/Software%23LemmaGen_v2.2.zip)).\n\nIt is different from other Lemmagen wrappers like [this one on PyPi](https://pypi.org/project/Lemmagen/) because it offers a clean, fast OO interface built with the excellent [pybind11 library](https://github.com/pybind/pybind11) and supports an additional language (Croatian).\n\nModels 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.\n\nIn total, 19 languages are supported:\n\n1. Bulgarian: `bg`\n2. Croatian: `hr`\n3. Czech: `cs`\n4. English: `en`\n5. Estonian: `et`\n6. Farsi/Persian: `fa` \n7. French: `fr` \n8. German: `de`\n9. Hungarian: `hu`\n10. Italian: `it`\n11. Macedonian: `mk` \n12. Polish: `pl` \n13. Romanian: `ro` \n14. Russian: `ru` \n15. Serbian: `sr`\n16. Slovak: `sk`\n17. Slovene: `sl` \n18. Spanish: `es`\n19. Ukrainian: `uk`\n\n\n## Installation and requirements\n\n\n```sh\npip install lemmagen3\n```\n\nwill 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.\n\n**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.\n\n```sh\nImportError: ..._lemmagen.cpython-35m-x86_64-linux-gnu.so: undefined symbol: _PyThreadState_UncheckedGet\n```\n\n\n## How to use\n\nThe following snippet illustrates how to use `lemmagen3`.\n\n```python\nfrom lemmagen3 import Lemmatizer\n\n# first, we can list all supported languages\nprint(Lemmatizer.list_supported_languages())\n\n# then, create few lemmatizer objects using ISO 639-1 language codes\n# (English, Slovene and Russian)\n\nlem_en = Lemmatizer('en')\nlem_sl = Lemmatizer('sl')\nlem_ru = Lemmatizer('ru')\n\n# now lemmatize the word \"cats\" in all three languages\nprint(lem_en.lemmatize('cats'))\nprint(lem_sl.lemmatize('ma\u010dke'))\nprint(lem_ru.lemmatize('\u043a\u043e\u0442\u044b'))\n\n# you can also change the language for an existing Lemmatizer object\n# lem_en will now become a French lemmatizer:\nlem_en.load_language('fr')\n\n# finally, you can also load your own Lemmagen model\nmy_lem = Lemmatizer()\nmy_lem.load_model('/path/to/my/model')\n```\n\nNote 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.:\n\n```python\nsentence = 'cats hate dogs'\ntokens = sentence.split()\nsentence_lemmatized = ' '.join([lem_en.lemmatize(token) for token in tokens])\n```\n\nNote also that `lemmagen3` operates on unicode encoded strings so if you use python 2 make sure that your input string is encoded as unicode.\n\n\n## License\n\nPlease note that this repository contains code and binary models compiled and built from different sources which are under different licenses:\n\n1. C++ files and headers come from [Lemmagen](http://lemmatise.ijs.si/) and are modified and adapted to work as a Python module (**LGPL**)\n2. Binary models are built from Multext and [Multext-east](http://nl.ijs.si/ME/V4/) sources:\n * Language resources used to build Farsi/Persian, Macedonian, Polish, and Russian models are for **non-commercial use only**.\n * Language resource for other supported languages are released under **CC BY-SA 4.0**.\n\nThe rest of the code in this repository was created by the author and is licensed under the **MIT license**.\n\n\n## Authors\n\n- `lemmagen3` is developed by Vid Podpe\u010dan (vid.podpecan@ijs.si).\n- The Lemmagen lemmatizer was developed by [Matja\u017e Jur\u0161i\u010d](http://lemmatise.ijs.si/Home/Contact).\n",
"bugtrack_url": null,
"license": "",
"summary": "A Python2/3 wrapper for Lemmagen lemmatizer supporting 19 languages.",
"version": "3.5.1",
"project_urls": {
"Homepage": "https://github.com/vpodpecan/lemmagen3/"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "793882178d07e83577a0f05942bbe9c1f3c9f0acab277238b36b9014ade999d4",
"md5": "e7f109f07ab43e09e993de96af5eedd4",
"sha256": "8ec938206a4d15762f657e80e315b097c5cd2312d587d04c4bebfc80c25a18a4"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e7f109f07ab43e09e993de96af5eedd4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 11674529,
"upload_time": "2024-02-07T15:36:36",
"upload_time_iso_8601": "2024-02-07T15:36:36.044507Z",
"url": "https://files.pythonhosted.org/packages/79/38/82178d07e83577a0f05942bbe9c1f3c9f0acab277238b36b9014ade999d4/lemmagen3-3.5.1-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "17f68d89886faa8b636a5c849d73f69d34d864c3697199ad3962cdcd683844fb",
"md5": "606aa958154beb7b8a44376dda6aeab8",
"sha256": "105fc7ec4613f42cee8bc7c57fa0ab0fc99812278697e79b4d280bfd1902afa5"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "606aa958154beb7b8a44376dda6aeab8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 11664629,
"upload_time": "2024-02-07T15:36:39",
"upload_time_iso_8601": "2024-02-07T15:36:39.020807Z",
"url": "https://files.pythonhosted.org/packages/17/f6/8d89886faa8b636a5c849d73f69d34d864c3697199ad3962cdcd683844fb/lemmagen3-3.5.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3f5d6e7492c7c53ff6200c40ca4a542116cc26ace337e69ba02974d5526aae9f",
"md5": "c613ff2a575132d5a8b4616fb0850981",
"sha256": "7c524e70ed3b7ff5a5f6f218f7afc8797e730442855d90d32d9c1b2a4dcdcf43"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "c613ff2a575132d5a8b4616fb0850981",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 12550463,
"upload_time": "2024-02-07T15:36:41",
"upload_time_iso_8601": "2024-02-07T15:36:41.380109Z",
"url": "https://files.pythonhosted.org/packages/3f/5d/6e7492c7c53ff6200c40ca4a542116cc26ace337e69ba02974d5526aae9f/lemmagen3-3.5.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1760e8ffb37dab59c26e44c81661fb14316eaee807f2e2a828d61978dfe6c8a2",
"md5": "e7eb08ab5814bb7ab37839d9aefd4b1c",
"sha256": "02ee3c234f062a81d3a14ac2fc13504809755365607a6b266faa244ea5d6781f"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e7eb08ab5814bb7ab37839d9aefd4b1c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 12555063,
"upload_time": "2024-02-07T15:36:43",
"upload_time_iso_8601": "2024-02-07T15:36:43.535462Z",
"url": "https://files.pythonhosted.org/packages/17/60/e8ffb37dab59c26e44c81661fb14316eaee807f2e2a828d61978dfe6c8a2/lemmagen3-3.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4b272ddf38c5932db70ba414b1c87af5da69ee137cc259cb9241771c095eed52",
"md5": "729491598dc93e46475e9a8340e91b0d",
"sha256": "f5ac4d0a722c34666513c48474a18ddb3eb2d34da41e25d2e6bfaf2ea4f0aff0"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "729491598dc93e46475e9a8340e91b0d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 13125463,
"upload_time": "2024-02-07T15:36:46",
"upload_time_iso_8601": "2024-02-07T15:36:46.565456Z",
"url": "https://files.pythonhosted.org/packages/4b/27/2ddf38c5932db70ba414b1c87af5da69ee137cc259cb9241771c095eed52/lemmagen3-3.5.1-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "03d9c02399b055c1da7787c78dec592d8f638e07264a24caee539c554b44d61b",
"md5": "1dcd2547d8cddeb3d32551b084025329",
"sha256": "cc76fb04d2576731892ad6b9d3f5280104e35cefca6c687e7e76dda1b9c4f61b"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "1dcd2547d8cddeb3d32551b084025329",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 13083007,
"upload_time": "2024-02-07T15:36:48",
"upload_time_iso_8601": "2024-02-07T15:36:48.787349Z",
"url": "https://files.pythonhosted.org/packages/03/d9/c02399b055c1da7787c78dec592d8f638e07264a24caee539c554b44d61b/lemmagen3-3.5.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9176a9192e1fd72994e4d270dd747f9d444dc0a25cb36947d872b8243e264b5c",
"md5": "271e45fbb31a27385fcc7d9dbba68a11",
"sha256": "d13b95cbb5e7c0911d28a66e24b41afb86794da8a1e17516e8d6d55ea7f7aa81"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "271e45fbb31a27385fcc7d9dbba68a11",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 11644700,
"upload_time": "2024-02-07T15:36:50",
"upload_time_iso_8601": "2024-02-07T15:36:50.988906Z",
"url": "https://files.pythonhosted.org/packages/91/76/a9192e1fd72994e4d270dd747f9d444dc0a25cb36947d872b8243e264b5c/lemmagen3-3.5.1-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4cf7337ef7ca5f660241191d1e5483c06e23100bd53cae3de1e5aa2b5dc505e1",
"md5": "de789611d96d323b27bbee619e6e8d2d",
"sha256": "3793a704417fd4e31e0fef5bef3c0b5720e01e50fec5c882ffb6ef5af65fb70e"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "de789611d96d323b27bbee619e6e8d2d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 11651807,
"upload_time": "2024-02-07T15:36:53",
"upload_time_iso_8601": "2024-02-07T15:36:53.118061Z",
"url": "https://files.pythonhosted.org/packages/4c/f7/337ef7ca5f660241191d1e5483c06e23100bd53cae3de1e5aa2b5dc505e1/lemmagen3-3.5.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b8a74a67dc4be7a743b686f77a58bd058b3f986909561a2f1fbd95b3bd11c57c",
"md5": "78defa2d4bafe35642f15361e011f8dd",
"sha256": "2c59ed81e0445e6530d42763f72a5ea726bece1b6f5693e05a427272bb8c1e2e"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "78defa2d4bafe35642f15361e011f8dd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 11675956,
"upload_time": "2024-02-07T15:36:55",
"upload_time_iso_8601": "2024-02-07T15:36:55.537141Z",
"url": "https://files.pythonhosted.org/packages/b8/a7/4a67dc4be7a743b686f77a58bd058b3f986909561a2f1fbd95b3bd11c57c/lemmagen3-3.5.1-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fdba5f467d0d926cf8611b84a4ff9bde778259c1de821262ceea89852910d12b",
"md5": "9c1fde1e98151876188d66033f254b52",
"sha256": "09eb1dfb07a59ad803d8f71464b5704a0093f735901b3d859c700686dd2cd08a"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9c1fde1e98151876188d66033f254b52",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 11665980,
"upload_time": "2024-02-07T15:36:57",
"upload_time_iso_8601": "2024-02-07T15:36:57.797431Z",
"url": "https://files.pythonhosted.org/packages/fd/ba/5f467d0d926cf8611b84a4ff9bde778259c1de821262ceea89852910d12b/lemmagen3-3.5.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d6a201e70c447adab2c81f2d882ce3fbfd291e51a910833bef6c682f1b21ae25",
"md5": "197dcc616c83115d34cd9b1da04096d5",
"sha256": "8fe9f30f7a9d228eead6c486a450e0e23e409dc48959ebd7904221f28c0e46ba"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "197dcc616c83115d34cd9b1da04096d5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 12564136,
"upload_time": "2024-02-07T15:37:00",
"upload_time_iso_8601": "2024-02-07T15:37:00.610256Z",
"url": "https://files.pythonhosted.org/packages/d6/a2/01e70c447adab2c81f2d882ce3fbfd291e51a910833bef6c682f1b21ae25/lemmagen3-3.5.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1550286f1be2fb6383b896b59a56eb63ae50b22606b479d60411e83f0bfe57ab",
"md5": "0d95fe55fd134f5700f49399542c8aa7",
"sha256": "716e841e3554f0a51b4f54bc88e83026f8fd523566163c0777b922516a9af3bc"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0d95fe55fd134f5700f49399542c8aa7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 12572183,
"upload_time": "2024-02-07T15:37:03",
"upload_time_iso_8601": "2024-02-07T15:37:03.086179Z",
"url": "https://files.pythonhosted.org/packages/15/50/286f1be2fb6383b896b59a56eb63ae50b22606b479d60411e83f0bfe57ab/lemmagen3-3.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8a19e64bbf2bf13e2c6d7ee56c3e13b407f13da244a30f126f3d4b121c1cbbae",
"md5": "78467558bd3cb82d6b173d85604c1bc4",
"sha256": "f8cec513d50d8fb6bd670d1a694c42493265824a07324434f53477bb4a63a94e"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "78467558bd3cb82d6b173d85604c1bc4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 13137579,
"upload_time": "2024-02-07T15:37:05",
"upload_time_iso_8601": "2024-02-07T15:37:05.181697Z",
"url": "https://files.pythonhosted.org/packages/8a/19/e64bbf2bf13e2c6d7ee56c3e13b407f13da244a30f126f3d4b121c1cbbae/lemmagen3-3.5.1-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "726652a6d1201c3a92d698ff7ad3c3a4c4214392c7e39bce0f28e67727c5d6b7",
"md5": "9d76b82378f77ad207df612ec64ac8f5",
"sha256": "3ca2dde797b33d415673b19be24df0e8d71c79afd777a9e08584900a340286d8"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "9d76b82378f77ad207df612ec64ac8f5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 13099065,
"upload_time": "2024-02-07T15:37:08",
"upload_time_iso_8601": "2024-02-07T15:37:08.216587Z",
"url": "https://files.pythonhosted.org/packages/72/66/52a6d1201c3a92d698ff7ad3c3a4c4214392c7e39bce0f28e67727c5d6b7/lemmagen3-3.5.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "860ff053b238523b7392377ab72aaddd6ef3d807afb9ee3fcbf5a3c09e1ba9f9",
"md5": "5f81879a73dba7410f6d163faffa0c80",
"sha256": "76227c8d36be3b9cde0fe1e959dc44a062a0880d1b2a92bad07b6a1e990344d4"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "5f81879a73dba7410f6d163faffa0c80",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 11645609,
"upload_time": "2024-02-07T15:37:10",
"upload_time_iso_8601": "2024-02-07T15:37:10.385092Z",
"url": "https://files.pythonhosted.org/packages/86/0f/f053b238523b7392377ab72aaddd6ef3d807afb9ee3fcbf5a3c09e1ba9f9/lemmagen3-3.5.1-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "239afebad3506892e8b8b16e21f4766559855e671581e31980d707727a081c3f",
"md5": "ac7304941bdb8daa234abef6b84147bd",
"sha256": "2e06049b0a12749a582d342313283bda57984fa9e2920f5cdc0c1da5125aa1fd"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "ac7304941bdb8daa234abef6b84147bd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 11652973,
"upload_time": "2024-02-07T15:37:12",
"upload_time_iso_8601": "2024-02-07T15:37:12.512783Z",
"url": "https://files.pythonhosted.org/packages/23/9a/febad3506892e8b8b16e21f4766559855e671581e31980d707727a081c3f/lemmagen3-3.5.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f2c186f4bada3414ac3dbc89f03ae6fc2e56f165aef1aec5e4e998b9f2e2f7f1",
"md5": "e509dfdee10407a02db0fdd3a430c908",
"sha256": "895c1e0d7b245d2b5c1bfac796ef309f120501c608b9d4629ab6fe60f13808fb"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e509dfdee10407a02db0fdd3a430c908",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 11673184,
"upload_time": "2024-02-07T15:37:15",
"upload_time_iso_8601": "2024-02-07T15:37:15.749573Z",
"url": "https://files.pythonhosted.org/packages/f2/c1/86f4bada3414ac3dbc89f03ae6fc2e56f165aef1aec5e4e998b9f2e2f7f1/lemmagen3-3.5.1-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1f5dfd31f0ff3d255195f6af1cdb9085f119e585d90787fb40b56eebe973d566",
"md5": "6819e0caf7be13eac756ec1a79aa5fcd",
"sha256": "ac5993c576991ddbebe012c02e9db1be513fcc22d2a9aa96689b763c6602d398"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6819e0caf7be13eac756ec1a79aa5fcd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 11663435,
"upload_time": "2024-02-07T15:37:17",
"upload_time_iso_8601": "2024-02-07T15:37:17.904141Z",
"url": "https://files.pythonhosted.org/packages/1f/5d/fd31f0ff3d255195f6af1cdb9085f119e585d90787fb40b56eebe973d566/lemmagen3-3.5.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "93834e04cc269cc336a0c313c46b2d0cf1b0aae62fdd3d51235f60a50ae089c4",
"md5": "30f7ed2df4f6a6dafc0571ab754053f0",
"sha256": "0ffd55bfc14b77c7e9edfbb9dcd657d2077c76cab7bd4b52e6e616ac9042dfbb"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "30f7ed2df4f6a6dafc0571ab754053f0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 12563711,
"upload_time": "2024-02-07T15:37:20",
"upload_time_iso_8601": "2024-02-07T15:37:20.556707Z",
"url": "https://files.pythonhosted.org/packages/93/83/4e04cc269cc336a0c313c46b2d0cf1b0aae62fdd3d51235f60a50ae089c4/lemmagen3-3.5.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c907ed829646dcfe574e709bc087bc6324c2485fafeb68c9c47f50ea0d47d9c1",
"md5": "4b5c82c60ada828b4fc2f00dca010686",
"sha256": "0b1868202ff9c6d6dbd36859b2697a781486da6a9ac20aef31e7f0936d912612"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4b5c82c60ada828b4fc2f00dca010686",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 12574035,
"upload_time": "2024-02-07T15:37:22",
"upload_time_iso_8601": "2024-02-07T15:37:22.788884Z",
"url": "https://files.pythonhosted.org/packages/c9/07/ed829646dcfe574e709bc087bc6324c2485fafeb68c9c47f50ea0d47d9c1/lemmagen3-3.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e2dffb5a0222d3569c5262d8c55bfe348480ec196fbc4073ddad8606f818a743",
"md5": "41c4523c51e68d4bc0436578a2c33bd6",
"sha256": "b3fce76de56289b8f779b5eb2491d4269b25ab9bed7e7e2d3c94bd05800bef36"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "41c4523c51e68d4bc0436578a2c33bd6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 13138831,
"upload_time": "2024-02-07T15:37:25",
"upload_time_iso_8601": "2024-02-07T15:37:25.767998Z",
"url": "https://files.pythonhosted.org/packages/e2/df/fb5a0222d3569c5262d8c55bfe348480ec196fbc4073ddad8606f818a743/lemmagen3-3.5.1-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6463f56e0bfdea5e361fb247dd67d54f06ca545f3496d93cffb587091f6ad810",
"md5": "9e7aa04187f4ce24a7f952a191c02037",
"sha256": "c47cbedc722ff14e346ff233da177ee29ac4ce1e66798b307bd91f4a19f202f9"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "9e7aa04187f4ce24a7f952a191c02037",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 13102250,
"upload_time": "2024-02-07T15:37:27",
"upload_time_iso_8601": "2024-02-07T15:37:27.971687Z",
"url": "https://files.pythonhosted.org/packages/64/63/f56e0bfdea5e361fb247dd67d54f06ca545f3496d93cffb587091f6ad810/lemmagen3-3.5.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d54d88af045dc48c91c772bb77f2e6c2d3a8e3350d68b7fdd9702e6f62bf1a9f",
"md5": "c695a58223becdda3cad9bf8cb4599de",
"sha256": "d1caefb5a7e7ed65d384e1a515d137b736e4bb15d151748a89d78df46f5d586a"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "c695a58223becdda3cad9bf8cb4599de",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 11644517,
"upload_time": "2024-02-07T15:37:30",
"upload_time_iso_8601": "2024-02-07T15:37:30.240882Z",
"url": "https://files.pythonhosted.org/packages/d5/4d/88af045dc48c91c772bb77f2e6c2d3a8e3350d68b7fdd9702e6f62bf1a9f/lemmagen3-3.5.1-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aa22fda5d074b87fed53b203fc30ff72aa501b804cf6b51c3a5b732d10cf89de",
"md5": "4d353caf3f8a5205dcd6f42b0b3402db",
"sha256": "cd0d77d140a2351ede9ff151fa219e1dd5dc8e0d76d3e488d9371fd33fc36aab"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "4d353caf3f8a5205dcd6f42b0b3402db",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 11652082,
"upload_time": "2024-02-07T15:37:32",
"upload_time_iso_8601": "2024-02-07T15:37:32.747731Z",
"url": "https://files.pythonhosted.org/packages/aa/22/fda5d074b87fed53b203fc30ff72aa501b804cf6b51c3a5b732d10cf89de/lemmagen3-3.5.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "697c442ea53be337daf4b77dde4dd067a8c3810b2b0ee54e72956cd1e0f796ad",
"md5": "9ab770f4950a1fb26d8aa1720d3c5208",
"sha256": "bbdc07e92c964b6596e23804237383fa579d9b328910bee9df9646c751bb43fd"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "9ab770f4950a1fb26d8aa1720d3c5208",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 11674412,
"upload_time": "2024-02-07T15:37:34",
"upload_time_iso_8601": "2024-02-07T15:37:34.953887Z",
"url": "https://files.pythonhosted.org/packages/69/7c/442ea53be337daf4b77dde4dd067a8c3810b2b0ee54e72956cd1e0f796ad/lemmagen3-3.5.1-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "43ae1c40832f015d703e57f48690440f1d5ae1fc793de273dcc77003f3e53962",
"md5": "a4e670e26a6147eb01cd024769a8eaab",
"sha256": "af07843dd61adaa5ca3f4339e486b3029f5ba0292633813a16b0411dbf53f0a1"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a4e670e26a6147eb01cd024769a8eaab",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 11664547,
"upload_time": "2024-02-07T15:37:37",
"upload_time_iso_8601": "2024-02-07T15:37:37.892847Z",
"url": "https://files.pythonhosted.org/packages/43/ae/1c40832f015d703e57f48690440f1d5ae1fc793de273dcc77003f3e53962/lemmagen3-3.5.1-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "16ca203d02d1b52a7c950059fe2a36b2dcca89e18cf8838597bb01ba5c84fa13",
"md5": "fdf5de9e1e7e95dc2cd06be357ee85a1",
"sha256": "019d83cd818435666482c007340b33e4dbc733cddf319d0771f63b6747b96696"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "fdf5de9e1e7e95dc2cd06be357ee85a1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 12549224,
"upload_time": "2024-02-07T15:37:41",
"upload_time_iso_8601": "2024-02-07T15:37:41.033700Z",
"url": "https://files.pythonhosted.org/packages/16/ca/203d02d1b52a7c950059fe2a36b2dcca89e18cf8838597bb01ba5c84fa13/lemmagen3-3.5.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aabde12aab9738affd55ceeb334341c9774af8d8a665035cb689c549b512f723",
"md5": "1482f541248f4f9c7a1be31613d1ac14",
"sha256": "d38cf0c96ed58c9387bdff627625349b24fea712d38a4ce3585c140627eaa8c4"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1482f541248f4f9c7a1be31613d1ac14",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 12553294,
"upload_time": "2024-02-07T15:37:43",
"upload_time_iso_8601": "2024-02-07T15:37:43.118002Z",
"url": "https://files.pythonhosted.org/packages/aa/bd/e12aab9738affd55ceeb334341c9774af8d8a665035cb689c549b512f723/lemmagen3-3.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5c8f8dd680d6ef90b42ae5d74d2f6251e47f035e13fc311b970676c3578f58f8",
"md5": "6bf39779c92166db679978f0aa5750a6",
"sha256": "2bf4f52ec268795007cd2ce1c19f1ff875591198841b9d233f1dcfdd0cac7f7b"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "6bf39779c92166db679978f0aa5750a6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 13124723,
"upload_time": "2024-02-07T15:37:45",
"upload_time_iso_8601": "2024-02-07T15:37:45.925296Z",
"url": "https://files.pythonhosted.org/packages/5c/8f/8dd680d6ef90b42ae5d74d2f6251e47f035e13fc311b970676c3578f58f8/lemmagen3-3.5.1-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1cb42f2f98aebce024c450296fb67dfb5beace43950344c1c5ded7f6f2a23102",
"md5": "d2395d1ad82cf49af7b31f0eaff3d924",
"sha256": "13a99aaee4aba85a693c968e2602ef60b2fb5e0f2d09817c4fcb92182a8ea2b8"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "d2395d1ad82cf49af7b31f0eaff3d924",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 13083534,
"upload_time": "2024-02-07T15:37:48",
"upload_time_iso_8601": "2024-02-07T15:37:48.777631Z",
"url": "https://files.pythonhosted.org/packages/1c/b4/2f2f98aebce024c450296fb67dfb5beace43950344c1c5ded7f6f2a23102/lemmagen3-3.5.1-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3f97cce35e6f7ab891e9ffc781b244be5b364f3239334605a6aa3c2d92685942",
"md5": "3c532ccaee1366cfd55621ac8a37518e",
"sha256": "7d3975d5b33b37a6eebd64fa61c9188e3cfea2e2c0f25d9e09dc4900a263c3f4"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "3c532ccaee1366cfd55621ac8a37518e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 11640628,
"upload_time": "2024-02-07T15:37:51",
"upload_time_iso_8601": "2024-02-07T15:37:51.780272Z",
"url": "https://files.pythonhosted.org/packages/3f/97/cce35e6f7ab891e9ffc781b244be5b364f3239334605a6aa3c2d92685942/lemmagen3-3.5.1-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6e746a007186ab812f1a5d5664f9dedcf238e535ca825f1b1dcca36475cf8f96",
"md5": "a78a8aa9d2322ccfb49136a78dc4a8be",
"sha256": "7f8a48c990b7ecad8115191919cbe297233ff9cc41ea31a82e7edd1d8582624e"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "a78a8aa9d2322ccfb49136a78dc4a8be",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 11651681,
"upload_time": "2024-02-07T15:37:53",
"upload_time_iso_8601": "2024-02-07T15:37:53.869077Z",
"url": "https://files.pythonhosted.org/packages/6e/74/6a007186ab812f1a5d5664f9dedcf238e535ca825f1b1dcca36475cf8f96/lemmagen3-3.5.1-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0268b42815b8611cac8aed91724b9427660decd608c38f1b8a81457aa6b6c478",
"md5": "2ee963445053fdaaa5c16ecc25467414",
"sha256": "c09e16b647937f697b4331b0cbea66c906b4b79ee3bf80d9f9301b948fbb40ad"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "2ee963445053fdaaa5c16ecc25467414",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 11674598,
"upload_time": "2024-02-07T15:37:56",
"upload_time_iso_8601": "2024-02-07T15:37:56.356268Z",
"url": "https://files.pythonhosted.org/packages/02/68/b42815b8611cac8aed91724b9427660decd608c38f1b8a81457aa6b6c478/lemmagen3-3.5.1-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6f741a52804acbd37237375ea1994244438cde85b7f62ea487831aa730d26cca",
"md5": "4f9a935bde2913a5438f1a8f1ed4335b",
"sha256": "d4404ee0b5a17c19369ca7bfd8637a36cb2c48906d1c492b2171296798ab8e09"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "4f9a935bde2913a5438f1a8f1ed4335b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 11664888,
"upload_time": "2024-02-07T15:37:58",
"upload_time_iso_8601": "2024-02-07T15:37:58.458181Z",
"url": "https://files.pythonhosted.org/packages/6f/74/1a52804acbd37237375ea1994244438cde85b7f62ea487831aa730d26cca/lemmagen3-3.5.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4d6906524bd570db7d19260b439dc8c3822ece9bb19cd507aea1e1266bd59c9e",
"md5": "c0f8c6191dc39f2d32d3976631727fe5",
"sha256": "e87f9040f956c469a1d2f8d102a6691373cbb57d0a15c9c32d5602ba35de8015"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "c0f8c6191dc39f2d32d3976631727fe5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 12549462,
"upload_time": "2024-02-07T15:38:01",
"upload_time_iso_8601": "2024-02-07T15:38:01.191046Z",
"url": "https://files.pythonhosted.org/packages/4d/69/06524bd570db7d19260b439dc8c3822ece9bb19cd507aea1e1266bd59c9e/lemmagen3-3.5.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8163e3761c25a9beb080cd45289425e99167c46c84cf16059450ce038576fb18",
"md5": "946056516663129bc668d95a04214ba3",
"sha256": "e70aa8c94444102f6f688e132269dadff290a37e6c67d1e0359f03534c4dcb94"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "946056516663129bc668d95a04214ba3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 12553401,
"upload_time": "2024-02-07T15:38:03",
"upload_time_iso_8601": "2024-02-07T15:38:03.640566Z",
"url": "https://files.pythonhosted.org/packages/81/63/e3761c25a9beb080cd45289425e99167c46c84cf16059450ce038576fb18/lemmagen3-3.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "acf30fb543de7d5c501af3d8d6fe74a5c0d98c7d8b8b661f64eea6e1dcc9c556",
"md5": "3c3f4734e0697159b58531ea583f0b43",
"sha256": "115a6363dd0a94e1b6c7016fe009d768c65fb5848520ecf7c8636979f1551ca8"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "3c3f4734e0697159b58531ea583f0b43",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 13124039,
"upload_time": "2024-02-07T15:38:06",
"upload_time_iso_8601": "2024-02-07T15:38:06.109559Z",
"url": "https://files.pythonhosted.org/packages/ac/f3/0fb543de7d5c501af3d8d6fe74a5c0d98c7d8b8b661f64eea6e1dcc9c556/lemmagen3-3.5.1-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09aee4bcce0a4a4caddd8f3e68c08df1353709228fa719e4f27ac0bbdb97946f",
"md5": "90410e499705553e0d95c78ac65264c4",
"sha256": "5c42238a0e437a7abb58465f26694fd7e9352a3b5bb30cd8a3a06a439a05a4dc"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "90410e499705553e0d95c78ac65264c4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 13082053,
"upload_time": "2024-02-07T15:38:09",
"upload_time_iso_8601": "2024-02-07T15:38:09.066906Z",
"url": "https://files.pythonhosted.org/packages/09/ae/e4bcce0a4a4caddd8f3e68c08df1353709228fa719e4f27ac0bbdb97946f/lemmagen3-3.5.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8fd2ab9107b9c05ca370b055bd5c27bcf9483d82ff884edb241232ba7cb0619a",
"md5": "0c89434737fdb954645143e00fe3ecaa",
"sha256": "4c49515455e5392aec7bd6cecf9e0ee0642fbb361fb340159ca08d11c7774f6e"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "0c89434737fdb954645143e00fe3ecaa",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 11644781,
"upload_time": "2024-02-07T15:38:11",
"upload_time_iso_8601": "2024-02-07T15:38:11.677571Z",
"url": "https://files.pythonhosted.org/packages/8f/d2/ab9107b9c05ca370b055bd5c27bcf9483d82ff884edb241232ba7cb0619a/lemmagen3-3.5.1-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "13cd7fabd8be1e1a71dd37934030bb012177eaa246b5babf17981f4314f48881",
"md5": "ef334e62531e137508b4479a7231196e",
"sha256": "2a3f56df9b0ba886aae144bf331d4d78006daa5327c7f51307e4af8483f03d92"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "ef334e62531e137508b4479a7231196e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 11651881,
"upload_time": "2024-02-07T15:38:14",
"upload_time_iso_8601": "2024-02-07T15:38:14.969376Z",
"url": "https://files.pythonhosted.org/packages/13/cd/7fabd8be1e1a71dd37934030bb012177eaa246b5babf17981f4314f48881/lemmagen3-3.5.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3fcc05f3fee62b52a732138a6d0f91e41162d732525a9c2a4cb540e86dffbcd3",
"md5": "ede98e89aba5715e7f64623ff588f38d",
"sha256": "50c346db521562ab48e74c31e0fd7edcdf62cbdcac70457349ec50e45cc910d5"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "ede98e89aba5715e7f64623ff588f38d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 11664944,
"upload_time": "2024-02-07T15:38:17",
"upload_time_iso_8601": "2024-02-07T15:38:17.429790Z",
"url": "https://files.pythonhosted.org/packages/3f/cc/05f3fee62b52a732138a6d0f91e41162d732525a9c2a4cb540e86dffbcd3/lemmagen3-3.5.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a4891c177e7132e880d30e74eb962878c428d82664a3dd6939f5ed0f6875fc35",
"md5": "8c3bf26a0437f9edbd63884c11c58802",
"sha256": "1a50013054e9d584dd1a2e02187bf68aef715134b72fc0a9c064603cc9ec4b61"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8c3bf26a0437f9edbd63884c11c58802",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 11704436,
"upload_time": "2024-02-07T15:38:19",
"upload_time_iso_8601": "2024-02-07T15:38:19.606167Z",
"url": "https://files.pythonhosted.org/packages/a4/89/1c177e7132e880d30e74eb962878c428d82664a3dd6939f5ed0f6875fc35/lemmagen3-3.5.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c3dacb365f5804857b46427cb941d07696a47cfcc53adc80e53362fe3a14194c",
"md5": "33764c4702d56a26bf157723108ab4a9",
"sha256": "8f7a5f00020aa3c4eb27e418f3e9721fcaa518bb5f32c86170b62057207f0504"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "33764c4702d56a26bf157723108ab4a9",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 11696401,
"upload_time": "2024-02-07T15:38:21",
"upload_time_iso_8601": "2024-02-07T15:38:21.834267Z",
"url": "https://files.pythonhosted.org/packages/c3/da/cb365f5804857b46427cb941d07696a47cfcc53adc80e53362fe3a14194c/lemmagen3-3.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b8b38aa49b3ff87403dff0d3516b0a537a69e37c2a1db77953967145fbc703b3",
"md5": "a44454943ba88879ce4a800211d2bc33",
"sha256": "2f77019c54e12ef8e60cf061dce5a0a9c39f3743d8aa62c88b7bb3075a20b6ab"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "a44454943ba88879ce4a800211d2bc33",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 11651101,
"upload_time": "2024-02-07T15:38:25",
"upload_time_iso_8601": "2024-02-07T15:38:25.503887Z",
"url": "https://files.pythonhosted.org/packages/b8/b3/8aa49b3ff87403dff0d3516b0a537a69e37c2a1db77953967145fbc703b3/lemmagen3-3.5.1-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f52350758ba70705f58f800c0bc87c43c76e8a9f88f38c0dfc0a6b3c004ed8f1",
"md5": "55e21f0ba0f621a2bbf1c9c415fa5fb2",
"sha256": "c6dce6e2422d954887e5307e4d568ae54a4ad5498dd59ffe3a31a76e0d5baab9"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "55e21f0ba0f621a2bbf1c9c415fa5fb2",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 11664936,
"upload_time": "2024-02-07T15:38:28",
"upload_time_iso_8601": "2024-02-07T15:38:28.558367Z",
"url": "https://files.pythonhosted.org/packages/f5/23/50758ba70705f58f800c0bc87c43c76e8a9f88f38c0dfc0a6b3c004ed8f1/lemmagen3-3.5.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "234075ac7f14ac381c09fa0f2c907d4bbdea2b05aba159b0f23b5512af023ca3",
"md5": "c8ef3f3fe55355858a7eb4d60dea050c",
"sha256": "7c57410fac52b5ae0e637da24b0a85fd542503d3d464191b9b4efabbc253ce83"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "c8ef3f3fe55355858a7eb4d60dea050c",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 11704448,
"upload_time": "2024-02-07T15:38:30",
"upload_time_iso_8601": "2024-02-07T15:38:30.847719Z",
"url": "https://files.pythonhosted.org/packages/23/40/75ac7f14ac381c09fa0f2c907d4bbdea2b05aba159b0f23b5512af023ca3/lemmagen3-3.5.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7a18b777a2953fbbd7f5dd5824ae42f09ce53ad02c24455928d1ec1b8d48048d",
"md5": "daa5932184d4c3cf4e80e7ad990a2816",
"sha256": "f84e05483f875fd2106ae56e6db0aca51c3b907a9a3287553b53ab11feba720d"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "daa5932184d4c3cf4e80e7ad990a2816",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 11696887,
"upload_time": "2024-02-07T15:38:33",
"upload_time_iso_8601": "2024-02-07T15:38:33.636558Z",
"url": "https://files.pythonhosted.org/packages/7a/18/b777a2953fbbd7f5dd5824ae42f09ce53ad02c24455928d1ec1b8d48048d/lemmagen3-3.5.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9b3e5558d17e817b7e7af108591f19e247e91718993d03b91079686913bda294",
"md5": "e8791f3bdda84830b44bc56df20dba90",
"sha256": "0ed357a007e343d68c253e797ab06afaea49c9733721d87261326903edf0fed2"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-pp38-pypy38_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "e8791f3bdda84830b44bc56df20dba90",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 11651067,
"upload_time": "2024-02-07T15:38:35",
"upload_time_iso_8601": "2024-02-07T15:38:35.815649Z",
"url": "https://files.pythonhosted.org/packages/9b/3e/5558d17e817b7e7af108591f19e247e91718993d03b91079686913bda294/lemmagen3-3.5.1-pp38-pypy38_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e5455a4342d576d07a1698de899638703817cf1b9f05233cf03a5aa6af09a433",
"md5": "53aa332b77c49b5cf210662add5809ea",
"sha256": "5dabf3efe1e2e0271dffccb225ff4465373a5658782a334775258016d8cd339f"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "53aa332b77c49b5cf210662add5809ea",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 11664993,
"upload_time": "2024-02-07T15:38:39",
"upload_time_iso_8601": "2024-02-07T15:38:39.357022Z",
"url": "https://files.pythonhosted.org/packages/e5/45/5a4342d576d07a1698de899638703817cf1b9f05233cf03a5aa6af09a433/lemmagen3-3.5.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f6ea62068d859963eaf55749aba37b864c43acd671052f746b0cb3c019a0dc4e",
"md5": "4404f4dab68a166892124b213f1874e2",
"sha256": "e40ac873cf1ffb33fd2adf3d3c4fd8c7c8ddcb089317ef66c613ea26a8f15e1d"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "4404f4dab68a166892124b213f1874e2",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 11704481,
"upload_time": "2024-02-07T15:38:41",
"upload_time_iso_8601": "2024-02-07T15:38:41.636300Z",
"url": "https://files.pythonhosted.org/packages/f6/ea/62068d859963eaf55749aba37b864c43acd671052f746b0cb3c019a0dc4e/lemmagen3-3.5.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1f246393b414a06ed18dc533132821a2cdc0441785e923e8763ffd5991e1147b",
"md5": "6fa86e8ce0452bac0bd49ead7c349ded",
"sha256": "ff8d768b6d86fc9dc137295a7031b2f06f5c5188be72ec2a1a00c88036038787"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6fa86e8ce0452bac0bd49ead7c349ded",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 11696369,
"upload_time": "2024-02-07T15:38:46",
"upload_time_iso_8601": "2024-02-07T15:38:46.378682Z",
"url": "https://files.pythonhosted.org/packages/1f/24/6393b414a06ed18dc533132821a2cdc0441785e923e8763ffd5991e1147b/lemmagen3-3.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "262d1c0bdf07c599a47df8e024373081c94b0a100131f5dafbdb93af8cbf1885",
"md5": "15725eb0bc70310ebf3a678b0db43667",
"sha256": "6f278f5b6d861272d5d44be25f955d4268408f233bf6a8ed0cac83e2a9c3b7fe"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "15725eb0bc70310ebf3a678b0db43667",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 11651127,
"upload_time": "2024-02-07T15:38:48",
"upload_time_iso_8601": "2024-02-07T15:38:48.766849Z",
"url": "https://files.pythonhosted.org/packages/26/2d/1c0bdf07c599a47df8e024373081c94b0a100131f5dafbdb93af8cbf1885/lemmagen3-3.5.1-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "faab8e340ecca5c2b0394db41c8789b32501775f09fcd52ec2f5677fb0f0baa9",
"md5": "1e142085d32495f17e7415420a051785",
"sha256": "11b7244cf7f71cde6a3a1d7d1b2b9fbd6d6a15bf9e9b5eab3933d930bfa69e57"
},
"downloads": -1,
"filename": "lemmagen3-3.5.1.tar.gz",
"has_sig": false,
"md5_digest": "1e142085d32495f17e7415420a051785",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11562946,
"upload_time": "2024-02-07T15:38:51",
"upload_time_iso_8601": "2024-02-07T15:38:51.878476Z",
"url": "https://files.pythonhosted.org/packages/fa/ab/8e340ecca5c2b0394db41c8789b32501775f09fcd52ec2f5677fb0f0baa9/lemmagen3-3.5.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-02-07 15:38:51",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "vpodpecan",
"github_project": "lemmagen3",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "lemmagen3"
}