lienv


Namelienv JSON
Version 0.5.0 PyPI version JSON
download
home_pageNone
SummaryA tool to easily get typed values out of strings stored in environment variables.
upload_time2023-09-18 15:29:51
maintainerNone
docs_urlNone
authorLiander Medeiros
requires_python>=3.8
licenseNone
keywords environment variables types parsing rust
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ## LiEnv: A simple yet useful library
<a href="https://github.com/liander-medeiros/lienv-py/actions">
    <img src="https://github.com/liander-medeiros/lienv-py/workflows/CI/badge.svg" alt="CI">
</a>
<a href="https://pypi.org/project/lienv/">
    <img src="https://img.shields.io/pypi/v/lienv.svg" alt="PyPi Latest Release"/>
</a>

LiEnv is a tool to easily get typed values out of strings stored in environment variables.

- Simplifies the sometimes tedious task of parsing strings to typed variables
- Provides a way to do it uniformly througout the project
- Aims to prevent unwanted behaviour caused by typos, errors or malicious content in environment variables

### Currently supported Python types:
- Integers and Floats
- Dicts
- Lists
- Tuples
- Booleans

## Example

```python
>>> import lienv
>>> integer = lienv.get(int, "SOME_INTEGER") # SOME_INTEGER="42"
>>> decimal = lienv.get(float, "SOME_FLOAT") # SOME_FLOAT="2.4"
>>> dictionary = lienv.get(dict, "SOME_DICT") # SOME_DICT="{'lienv': 42}"

>>> print(f"{integer} => {type(integer)}")
42 => <class 'int'>

>>> print(f"{decimal} => {type(decimal)}")
2.4 => <class 'float'>

>>> print(f"{dictionary} => {type(dictionary)}")
{'lienv': 42} => <class 'dict'>
```

## Setup

Install the latest version with:

```sh
pip install lienv
```

## TODO

- [ ] Parse types without directly using python's eval
- [ ] Implement unit tests in Rust
- [ ] Figure out how to test the Python module
- [ ] Change default integers and floats to 32 bit based on architecture
- [ ] Add wrappers for unsigned integer parsing
- [ ] Add wrappers for 8 and 16 bit numbers


## Contributing
I'll gladly accept feedback and contributions. 

Although this project's purpose was to solve problems that at first seemed too simple, the practicality it provided to me was motivation enough to turn it into a library so maybe more people could benefit from it.

I am yet to be proficient in Rust, so pardon my silly mistakes.

<div align="center">
    <img src="https://media.npr.org/assets/img/2023/05/26/honest-work-meme-cb0f0fb2227fb84b77b3c9a851ac09b095ab74d8-s1100-c50.jpg" width="300px"/>
</div>


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "lienv",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "environment,variables,types,parsing,rust",
    "author": "Liander Medeiros",
    "author_email": "liander.medeiros@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/47/f9/e5aac5ed95176234606d49059d5dec901ea4777b5ffa3165f055f5cdd25e/lienv-0.5.0.tar.gz",
    "platform": null,
    "description": "## LiEnv: A simple yet useful library\n<a href=\"https://github.com/liander-medeiros/lienv-py/actions\">\n    <img src=\"https://github.com/liander-medeiros/lienv-py/workflows/CI/badge.svg\" alt=\"CI\">\n</a>\n<a href=\"https://pypi.org/project/lienv/\">\n    <img src=\"https://img.shields.io/pypi/v/lienv.svg\" alt=\"PyPi Latest Release\"/>\n</a>\n\nLiEnv is a tool to easily get typed values out of strings stored in environment variables.\n\n- Simplifies the sometimes tedious task of parsing strings to typed variables\n- Provides a way to do it uniformly througout the project\n- Aims to prevent unwanted behaviour caused by typos, errors or malicious content in environment variables\n\n### Currently supported Python types:\n- Integers and Floats\n- Dicts\n- Lists\n- Tuples\n- Booleans\n\n## Example\n\n```python\n>>> import lienv\n>>> integer = lienv.get(int, \"SOME_INTEGER\") # SOME_INTEGER=\"42\"\n>>> decimal = lienv.get(float, \"SOME_FLOAT\") # SOME_FLOAT=\"2.4\"\n>>> dictionary = lienv.get(dict, \"SOME_DICT\") # SOME_DICT=\"{'lienv': 42}\"\n\n>>> print(f\"{integer} => {type(integer)}\")\n42 => <class 'int'>\n\n>>> print(f\"{decimal} => {type(decimal)}\")\n2.4 => <class 'float'>\n\n>>> print(f\"{dictionary} => {type(dictionary)}\")\n{'lienv': 42} => <class 'dict'>\n```\n\n## Setup\n\nInstall the latest version with:\n\n```sh\npip install lienv\n```\n\n## TODO\n\n- [ ] Parse types without directly using python's eval\n- [ ] Implement unit tests in Rust\n- [ ] Figure out how to test the Python module\n- [ ] Change default integers and floats to 32 bit based on architecture\n- [ ] Add wrappers for unsigned integer parsing\n- [ ] Add wrappers for 8 and 16 bit numbers\n\n\n## Contributing\nI'll gladly accept feedback and contributions. \n\nAlthough this project's purpose was to solve problems that at first seemed too simple, the practicality it provided to me was motivation enough to turn it into a library so maybe more people could benefit from it.\n\nI am yet to be proficient in Rust, so pardon my silly mistakes.\n\n<div align=\"center\">\n    <img src=\"https://media.npr.org/assets/img/2023/05/26/honest-work-meme-cb0f0fb2227fb84b77b3c9a851ac09b095ab74d8-s1100-c50.jpg\" width=\"300px\"/>\n</div>\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A tool to easily get typed values out of strings stored in environment variables.",
    "version": "0.5.0",
    "project_urls": {
        "changelog": "https://github.com/liander-medeiros/lienv-py/blob/master/CHANGELOG.md",
        "documentation": "https://github.com/liander-medeiros/lienv-py/blob/master/README.md",
        "homepage": "https://github.com/liander-medeiros/lienv-py",
        "repository": "https://github.com/liander-medeiros/lienv-py"
    },
    "split_keywords": [
        "environment",
        "variables",
        "types",
        "parsing",
        "rust"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c9b4fd32ef0ccbba5e7c409afbe9dd84a020758ea3b154a64c888f0237f74de",
                "md5": "ba63540b276395933bd430f48e006c1a",
                "sha256": "b3704cf8e8791be134b0f4a8b097e46767e1d01135653ab725e825f0363bb6eb"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp310-cp310-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ba63540b276395933bd430f48e006c1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 287079,
            "upload_time": "2023-09-18T15:27:40",
            "upload_time_iso_8601": "2023-09-18T15:27:40.952620Z",
            "url": "https://files.pythonhosted.org/packages/1c/9b/4fd32ef0ccbba5e7c409afbe9dd84a020758ea3b154a64c888f0237f74de/lienv-0.5.0-cp310-cp310-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a215e6ba88eaadb0477267f6ae58c80860caf422f3035ae88f5c2409bb3b9f8f",
                "md5": "d0654e93091ae5821e9e66a8e20aa99f",
                "sha256": "c68f9010613d9dbf00cd7f4747faafd4a21ccf15a019e331c27e239596286403"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d0654e93091ae5821e9e66a8e20aa99f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 282685,
            "upload_time": "2023-09-18T15:27:43",
            "upload_time_iso_8601": "2023-09-18T15:27:43.176570Z",
            "url": "https://files.pythonhosted.org/packages/a2/15/e6ba88eaadb0477267f6ae58c80860caf422f3035ae88f5c2409bb3b9f8f/lienv-0.5.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "846d51e37647aee05201f33d8c771a14fc9efbd708bddf74090e3c0d5567d25e",
                "md5": "6636ff9473aaeec6f210931686e6e6dd",
                "sha256": "7d4e9714d5b2071cee33be45819cad866cf915c576818f742c849b13bc06fba0"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6636ff9473aaeec6f210931686e6e6dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1177740,
            "upload_time": "2023-09-18T15:27:45",
            "upload_time_iso_8601": "2023-09-18T15:27:45.347468Z",
            "url": "https://files.pythonhosted.org/packages/84/6d/51e37647aee05201f33d8c771a14fc9efbd708bddf74090e3c0d5567d25e/lienv-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "77151d6f50bec92d588569441bb5b44cae9eba033f97678cc540dfcf4aa0d5c4",
                "md5": "e395980847e8ca5b80fc644c006812f1",
                "sha256": "4af163eb2f53709cf18e0ba4e858873828da7c841e895435a90dce03dd5aadd2"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e395980847e8ca5b80fc644c006812f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1187058,
            "upload_time": "2023-09-18T15:27:48",
            "upload_time_iso_8601": "2023-09-18T15:27:48.049263Z",
            "url": "https://files.pythonhosted.org/packages/77/15/1d6f50bec92d588569441bb5b44cae9eba033f97678cc540dfcf4aa0d5c4/lienv-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "60a68c054fe7ea50b53efd219590b875e0487fff920dc1dbecf07f743b51764c",
                "md5": "e7b70614f2354994620f53850bce9423",
                "sha256": "aa1aca604fadfe7c3dbbd6d4fc5b0ecd8da155e50a04c830c43e3083e7111f33"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e7b70614f2354994620f53850bce9423",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1287463,
            "upload_time": "2023-09-18T15:27:50",
            "upload_time_iso_8601": "2023-09-18T15:27:50.526032Z",
            "url": "https://files.pythonhosted.org/packages/60/a6/8c054fe7ea50b53efd219590b875e0487fff920dc1dbecf07f743b51764c/lienv-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1b731311652cb908678e068e2efee78d04c337495025984c63456d47ba2a6212",
                "md5": "acf8924c5d0bbd4df128a4bf102e4cec",
                "sha256": "f5ed3a37208f02966eed477c0d761da817a9a472b46a539159e112fcde608a6c"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "acf8924c5d0bbd4df128a4bf102e4cec",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1359474,
            "upload_time": "2023-09-18T15:27:53",
            "upload_time_iso_8601": "2023-09-18T15:27:53.244588Z",
            "url": "https://files.pythonhosted.org/packages/1b/73/1311652cb908678e068e2efee78d04c337495025984c63456d47ba2a6212/lienv-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6688add3e6be6f557765796f3ed53d93daf632e159c354fdc35fa4f6e44a5483",
                "md5": "c85947f4f7cd2381e168c1e9969a1b8f",
                "sha256": "1cd66a33aa99048ba90ffc97cef4d261e461e6dac5d01e06c31b269852375636"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c85947f4f7cd2381e168c1e9969a1b8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1182862,
            "upload_time": "2023-09-18T15:27:55",
            "upload_time_iso_8601": "2023-09-18T15:27:55.013426Z",
            "url": "https://files.pythonhosted.org/packages/66/88/add3e6be6f557765796f3ed53d93daf632e159c354fdc35fa4f6e44a5483/lienv-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "887b88b5e901ed6160cb17514739e65005d049543e4f4cab6006f7c0fa7610ee",
                "md5": "9b3c185cb74c4806f2ea60d289114ce9",
                "sha256": "f64f6865ec251cffbced630d1334f4649574450b219e29580897ba3ac9107351"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "9b3c185cb74c4806f2ea60d289114ce9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1197287,
            "upload_time": "2023-09-18T15:27:56",
            "upload_time_iso_8601": "2023-09-18T15:27:56.929394Z",
            "url": "https://files.pythonhosted.org/packages/88/7b/88b5e901ed6160cb17514739e65005d049543e4f4cab6006f7c0fa7610ee/lienv-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a575cebcd6f21a841b100f3e5c9a36ab1fd9b5790ae5c7121bb67755b23fb330",
                "md5": "27eea1913e070ee7f415133e2da3fcee",
                "sha256": "341f57ba6c7555a94a2b2886b61fb119af8c01671002bca7e09499f732f207c7"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "27eea1913e070ee7f415133e2da3fcee",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 144345,
            "upload_time": "2023-09-18T15:27:58",
            "upload_time_iso_8601": "2023-09-18T15:27:58.694763Z",
            "url": "https://files.pythonhosted.org/packages/a5/75/cebcd6f21a841b100f3e5c9a36ab1fd9b5790ae5c7121bb67755b23fb330/lienv-0.5.0-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4e3b753b50decb394998286f619becd2c50a6fe48154b67671a358aad163b29",
                "md5": "e51102dd73dedb7452bd97037992af34",
                "sha256": "008b25556a87ad80b64fc5f8570d7974bbdfaf404bd2f093cf31109b26613bd2"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e51102dd73dedb7452bd97037992af34",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 148806,
            "upload_time": "2023-09-18T15:28:00",
            "upload_time_iso_8601": "2023-09-18T15:28:00.644862Z",
            "url": "https://files.pythonhosted.org/packages/f4/e3/b753b50decb394998286f619becd2c50a6fe48154b67671a358aad163b29/lienv-0.5.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1419329ceb16adf3301de2c16269188af3cf549c4bc7bf5dc7ae7ffb77bb8bb1",
                "md5": "fb8fd32e05044904712bdcc878ada84a",
                "sha256": "c45a4b0b3c7677b745456a98eca0433a40a64a6b4fd14a54ae2e83ae139849fe"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp311-cp311-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fb8fd32e05044904712bdcc878ada84a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 287084,
            "upload_time": "2023-09-18T15:28:02",
            "upload_time_iso_8601": "2023-09-18T15:28:02.810396Z",
            "url": "https://files.pythonhosted.org/packages/14/19/329ceb16adf3301de2c16269188af3cf549c4bc7bf5dc7ae7ffb77bb8bb1/lienv-0.5.0-cp311-cp311-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f603ca8565659e5ec2f9668357f0b39af493ba3ac5fdbd0b617fdfc87e1e5e79",
                "md5": "41e968cbcc0e00edfee1d407dc6c1137",
                "sha256": "007f143d9d26dd7ea58e36e6db671eb0a56a2abaf8c71c6f3d0ef1d9581ccb23"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "41e968cbcc0e00edfee1d407dc6c1137",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 282689,
            "upload_time": "2023-09-18T15:28:04",
            "upload_time_iso_8601": "2023-09-18T15:28:04.949878Z",
            "url": "https://files.pythonhosted.org/packages/f6/03/ca8565659e5ec2f9668357f0b39af493ba3ac5fdbd0b617fdfc87e1e5e79/lienv-0.5.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "877239a9ba1142a21f49202af3095f05e584e9b69b7509faefe53d197aedac62",
                "md5": "4052cef0d59331c4c8b789be8597e621",
                "sha256": "7ae2b5cb0997ca45fa7926bee3edcdee259f8a605769cc82698e005ed047de4f"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4052cef0d59331c4c8b789be8597e621",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1177841,
            "upload_time": "2023-09-18T15:28:06",
            "upload_time_iso_8601": "2023-09-18T15:28:06.791750Z",
            "url": "https://files.pythonhosted.org/packages/87/72/39a9ba1142a21f49202af3095f05e584e9b69b7509faefe53d197aedac62/lienv-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8056bcf1eaec186eb59e7e0b63dd457348ef86f654aaec6ef782c8221f803c1e",
                "md5": "cd65ec204ba39ce5b6fdee2aad1a7aaa",
                "sha256": "fd558075baadc025cc4a9d67edf193f4ccbccfcc7c80cbeb133072aff26538e1"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "cd65ec204ba39ce5b6fdee2aad1a7aaa",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1187095,
            "upload_time": "2023-09-18T15:28:08",
            "upload_time_iso_8601": "2023-09-18T15:28:08.458190Z",
            "url": "https://files.pythonhosted.org/packages/80/56/bcf1eaec186eb59e7e0b63dd457348ef86f654aaec6ef782c8221f803c1e/lienv-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "42db1debe718eef5818c982233c0c7ef688da844fbef0a14081d81bc4fcc58d0",
                "md5": "c5a535c69fc3ab320fdbd686ee6c488c",
                "sha256": "b352e2c896922e0ea0335980538a32eb2720f248c0acf940530291f8101a9919"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c5a535c69fc3ab320fdbd686ee6c488c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1287507,
            "upload_time": "2023-09-18T15:28:10",
            "upload_time_iso_8601": "2023-09-18T15:28:10.239499Z",
            "url": "https://files.pythonhosted.org/packages/42/db/1debe718eef5818c982233c0c7ef688da844fbef0a14081d81bc4fcc58d0/lienv-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7bc2f6c070ef09416c64c8e6606e179b61bec2ad31957945bd693452c9aa76ab",
                "md5": "ec4b15a85d4c53ef59d84710c4b2bdea",
                "sha256": "c66d5983e2cc9c1af0408634202da5fe6c148da0e68cc28c89665c4af10a61b8"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "ec4b15a85d4c53ef59d84710c4b2bdea",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1359617,
            "upload_time": "2023-09-18T15:28:12",
            "upload_time_iso_8601": "2023-09-18T15:28:12.532752Z",
            "url": "https://files.pythonhosted.org/packages/7b/c2/f6c070ef09416c64c8e6606e179b61bec2ad31957945bd693452c9aa76ab/lienv-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c57baae073af2fdd40657dcc12427c584844a92c2dbc16930b1e955f285bfab9",
                "md5": "20297f7f556b98738390ede434a9ef0b",
                "sha256": "643cdceedd72640bdc174f56ca68de49babf2b63474005fb2e286947aa50c52c"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "20297f7f556b98738390ede434a9ef0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1182841,
            "upload_time": "2023-09-18T15:28:14",
            "upload_time_iso_8601": "2023-09-18T15:28:14.929782Z",
            "url": "https://files.pythonhosted.org/packages/c5/7b/aae073af2fdd40657dcc12427c584844a92c2dbc16930b1e955f285bfab9/lienv-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "93442ebcae52ce9e8c20647d36f79dd47dd50a5f9d217c12576e061b3f6ede11",
                "md5": "1dbbc2ada6722a7017aa537d0fb5c4b1",
                "sha256": "d18506556433150cb1af61916c0291cda37a37f7b001cdc19b9a13fe71969a05"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "1dbbc2ada6722a7017aa537d0fb5c4b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1197353,
            "upload_time": "2023-09-18T15:28:16",
            "upload_time_iso_8601": "2023-09-18T15:28:16.843968Z",
            "url": "https://files.pythonhosted.org/packages/93/44/2ebcae52ce9e8c20647d36f79dd47dd50a5f9d217c12576e061b3f6ede11/lienv-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "22720106c97ca4b2fc9747aedc8de37010b069046959d082e869c9fb851ba665",
                "md5": "6c6585cabc04675c34016d9b58cf93ec",
                "sha256": "c42d3bdd91b324770a9261f9e2119cd25e5fd1daf5c9bc5a7a2acd867b84209f"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "6c6585cabc04675c34016d9b58cf93ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 144345,
            "upload_time": "2023-09-18T15:28:18",
            "upload_time_iso_8601": "2023-09-18T15:28:18.593623Z",
            "url": "https://files.pythonhosted.org/packages/22/72/0106c97ca4b2fc9747aedc8de37010b069046959d082e869c9fb851ba665/lienv-0.5.0-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a5abb607605555d6ecbd33473c2722d133330a9b3a6f9a0d28b44ff2c4a093fd",
                "md5": "1f52b4c6d363062053fba68f7dd911e7",
                "sha256": "f05907787bd42f6a37fe0f71ba1a9fcae9df934e7a6cb5d753b40ac106b25041"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1f52b4c6d363062053fba68f7dd911e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 148815,
            "upload_time": "2023-09-18T15:28:20",
            "upload_time_iso_8601": "2023-09-18T15:28:20.647351Z",
            "url": "https://files.pythonhosted.org/packages/a5/ab/b607605555d6ecbd33473c2722d133330a9b3a6f9a0d28b44ff2c4a093fd/lienv-0.5.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9ce7da805c2e2a3ad119bac2d9033de612e92a5e81dd76f07a8ada2f1178628",
                "md5": "a2b7391265b6547bb263889e8d036ffa",
                "sha256": "b0ad00ca8e6014a0d16012cdd1d21f4a338349f6e29e0e6bb0963c1252c05064"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a2b7391265b6547bb263889e8d036ffa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1176701,
            "upload_time": "2023-09-18T15:28:22",
            "upload_time_iso_8601": "2023-09-18T15:28:22.407348Z",
            "url": "https://files.pythonhosted.org/packages/d9/ce/7da805c2e2a3ad119bac2d9033de612e92a5e81dd76f07a8ada2f1178628/lienv-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b6fb8c43fbea6adb37cedac267c45b9e610af3b61a2dd6aafd280a4db3df691c",
                "md5": "b0fbd18afbd9ebee237a474e8a15402a",
                "sha256": "9780202ae5aefc212f3d60b981618ab677702401864dcb67fd9757c8adc3e659"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b0fbd18afbd9ebee237a474e8a15402a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1185831,
            "upload_time": "2023-09-18T15:28:24",
            "upload_time_iso_8601": "2023-09-18T15:28:24.548509Z",
            "url": "https://files.pythonhosted.org/packages/b6/fb/8c43fbea6adb37cedac267c45b9e610af3b61a2dd6aafd280a4db3df691c/lienv-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dec5fd73de06299f19e09996948baaf9aba73c5c0d0edddf74bc85f855d9fc52",
                "md5": "04303a44700121419a478e760a39de46",
                "sha256": "9d7d0ff2d30b0a2d683702daec0a9f53cb7fb2b7ce9af9a5d56c72064591014d"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "04303a44700121419a478e760a39de46",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1292438,
            "upload_time": "2023-09-18T15:28:27",
            "upload_time_iso_8601": "2023-09-18T15:28:27.036346Z",
            "url": "https://files.pythonhosted.org/packages/de/c5/fd73de06299f19e09996948baaf9aba73c5c0d0edddf74bc85f855d9fc52/lienv-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cad1a66fc03defa417b3da1879cac6981b0b4411042e9a11e0d972545126d96f",
                "md5": "2112de0d337af2e190dd707f163481d5",
                "sha256": "471d365ef0bce465277fbef4e65bcd17711888fc62bcc0ff93aefb0761a3fbf4"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "2112de0d337af2e190dd707f163481d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1347359,
            "upload_time": "2023-09-18T15:28:29",
            "upload_time_iso_8601": "2023-09-18T15:28:29.401820Z",
            "url": "https://files.pythonhosted.org/packages/ca/d1/a66fc03defa417b3da1879cac6981b0b4411042e9a11e0d972545126d96f/lienv-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1d8d160fc425ca9f3f0bad74454bf52a7047a914f02524b4224abd8d2bebd001",
                "md5": "829f668bb197e482b3981f053ba09f9c",
                "sha256": "1d4bd64f0443598133767cbb158966535c4821c0a65f5dabd19809dd11222fc5"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "829f668bb197e482b3981f053ba09f9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1182302,
            "upload_time": "2023-09-18T15:28:31",
            "upload_time_iso_8601": "2023-09-18T15:28:31.840183Z",
            "url": "https://files.pythonhosted.org/packages/1d/8d/160fc425ca9f3f0bad74454bf52a7047a914f02524b4224abd8d2bebd001/lienv-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0485f1d69017ff6b299424e7522a97db6943369c1fdbf30822b2ce2b6b150a45",
                "md5": "f91e9079ed671869a72f197f687cd85d",
                "sha256": "bd7ebb5396aee628c9df1e2a3c9615f1d78f0077431e9b477221ef1cc9546e8f"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "f91e9079ed671869a72f197f687cd85d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1200206,
            "upload_time": "2023-09-18T15:28:33",
            "upload_time_iso_8601": "2023-09-18T15:28:33.696086Z",
            "url": "https://files.pythonhosted.org/packages/04/85/f1d69017ff6b299424e7522a97db6943369c1fdbf30822b2ce2b6b150a45/lienv-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04807bdd45701569b10dddfc3134c1269bce91935aebf90319aa5decd8c0d0d5",
                "md5": "3abe4085d29db2e6583e75c9bb05cd12",
                "sha256": "4602a4e80810553d66269c180e499180de8dd4a4c614b7b216efca47d7ab8b0a"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp38-cp38-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3abe4085d29db2e6583e75c9bb05cd12",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 287282,
            "upload_time": "2023-09-18T15:28:35",
            "upload_time_iso_8601": "2023-09-18T15:28:35.511718Z",
            "url": "https://files.pythonhosted.org/packages/04/80/7bdd45701569b10dddfc3134c1269bce91935aebf90319aa5decd8c0d0d5/lienv-0.5.0-cp38-cp38-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d4053e8ada6cb2bfb12336fe187d7fbdd55e2e31eaefe3174aa16a73836b4db0",
                "md5": "9d13350c71362b51b6bfc11a820afc6d",
                "sha256": "ca1d1d6f525b18847f38489841b405bef85873a87f9fff9b2fbc9c0e5ee938bd"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9d13350c71362b51b6bfc11a820afc6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 282821,
            "upload_time": "2023-09-18T15:28:37",
            "upload_time_iso_8601": "2023-09-18T15:28:37.572428Z",
            "url": "https://files.pythonhosted.org/packages/d4/05/3e8ada6cb2bfb12336fe187d7fbdd55e2e31eaefe3174aa16a73836b4db0/lienv-0.5.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d30b5e2b5e22306bd653a58c6fe2740bafc87221d3db575691d33d00545dbea",
                "md5": "49043633240fad2812723b865b5bbb63",
                "sha256": "57528eccc4cf322f05d9e67e04b624da388a67bab66ee6a048b5492104195c31"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "49043633240fad2812723b865b5bbb63",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1177574,
            "upload_time": "2023-09-18T15:28:39",
            "upload_time_iso_8601": "2023-09-18T15:28:39.801735Z",
            "url": "https://files.pythonhosted.org/packages/5d/30/b5e2b5e22306bd653a58c6fe2740bafc87221d3db575691d33d00545dbea/lienv-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fb1fadac5a77edfc8de4ff85f0a210ab489da71be6202e91485f134ff10fe24a",
                "md5": "cfdec994660a31d974ba4164dc07abbd",
                "sha256": "476d2800431e36d95b9171a44bf36e3c5e7cbe4473c82bdfb26b96fe6b4dd419"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "cfdec994660a31d974ba4164dc07abbd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1187058,
            "upload_time": "2023-09-18T15:28:41",
            "upload_time_iso_8601": "2023-09-18T15:28:41.871916Z",
            "url": "https://files.pythonhosted.org/packages/fb/1f/adac5a77edfc8de4ff85f0a210ab489da71be6202e91485f134ff10fe24a/lienv-0.5.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7b5eb6fba50a7df3b19d0fec3fb43f767ffa55180466672f63a56f83dd1c8f87",
                "md5": "2172154776214d2e300aee3d1bad0abb",
                "sha256": "25be8ed185b417f8cd08a191c996ad9d873545f5e3f2d564ad3babe63acbfdc2"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2172154776214d2e300aee3d1bad0abb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1287455,
            "upload_time": "2023-09-18T15:28:43",
            "upload_time_iso_8601": "2023-09-18T15:28:43.658664Z",
            "url": "https://files.pythonhosted.org/packages/7b/5e/b6fba50a7df3b19d0fec3fb43f767ffa55180466672f63a56f83dd1c8f87/lienv-0.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a936d78c917c142913328d7fc2d13898fd3635c0c2a553e6b8ab854b23538ce8",
                "md5": "0bc2061fced1c3b7ef6e02e2cc2a9330",
                "sha256": "445034e0f058fe9120902805f2402ef96f4f63de3b0a4b4e45255d8e80144c31"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0bc2061fced1c3b7ef6e02e2cc2a9330",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1358922,
            "upload_time": "2023-09-18T15:28:45",
            "upload_time_iso_8601": "2023-09-18T15:28:45.659768Z",
            "url": "https://files.pythonhosted.org/packages/a9/36/d78c917c142913328d7fc2d13898fd3635c0c2a553e6b8ab854b23538ce8/lienv-0.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "797f3b5a83da9dae3b82672cc7ef0e7b8bd8cc0314296df1458a4510c6d5ad5e",
                "md5": "d57d0fd7f3fbc1cc4ea8a20280214b1b",
                "sha256": "7f5aeda47b646d7ca2c5a57eb029bad0d37295e8108cdf745aebeeaf4c9b4cd5"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d57d0fd7f3fbc1cc4ea8a20280214b1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1182769,
            "upload_time": "2023-09-18T15:28:47",
            "upload_time_iso_8601": "2023-09-18T15:28:47.454669Z",
            "url": "https://files.pythonhosted.org/packages/79/7f/3b5a83da9dae3b82672cc7ef0e7b8bd8cc0314296df1458a4510c6d5ad5e/lienv-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd699c05cafbbb20c76a8752b9cf0efa2a8e841f6d6185ee9bc05de64a5b423a",
                "md5": "45b3e7d72515ed417923bb80766b58f9",
                "sha256": "062e9ba924a199c7197971b2f134f00a6204ea5caea08551d638d5c3d91f7cfb"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "45b3e7d72515ed417923bb80766b58f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1197125,
            "upload_time": "2023-09-18T15:28:49",
            "upload_time_iso_8601": "2023-09-18T15:28:49.393297Z",
            "url": "https://files.pythonhosted.org/packages/bd/69/9c05cafbbb20c76a8752b9cf0efa2a8e841f6d6185ee9bc05de64a5b423a/lienv-0.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "984d9c1018868c247f719c83570fe897c4bb4f16945ea5ed84daad2940ffab9c",
                "md5": "e9efecc59cdb7308b5ed75d4f2fc81c6",
                "sha256": "579b7649bdd00e9bcb2eeb7c6eb73786b166edc4ba938db91e4d1388cfcb510a"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "e9efecc59cdb7308b5ed75d4f2fc81c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 144481,
            "upload_time": "2023-09-18T15:28:51",
            "upload_time_iso_8601": "2023-09-18T15:28:51.484382Z",
            "url": "https://files.pythonhosted.org/packages/98/4d/9c1018868c247f719c83570fe897c4bb4f16945ea5ed84daad2940ffab9c/lienv-0.5.0-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "603a03ef19d24cf57791e3a90a9691584ef26aa1fec7134c1f90202a4a25cdfe",
                "md5": "b005e470a2ee4328ffd48c8ff9f57bdc",
                "sha256": "eb62cf16069277e490d6dad2759cb8310779891b6b94b1bbc1fb9e309cbf73f5"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b005e470a2ee4328ffd48c8ff9f57bdc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 148487,
            "upload_time": "2023-09-18T15:28:52",
            "upload_time_iso_8601": "2023-09-18T15:28:52.849443Z",
            "url": "https://files.pythonhosted.org/packages/60/3a/03ef19d24cf57791e3a90a9691584ef26aa1fec7134c1f90202a4a25cdfe/lienv-0.5.0-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e5a8446d4ea77597fa02b166c57f511fdda2b5fab22354a02d6c812e3b381f6d",
                "md5": "3fbc3579fcb5f464491b1d01a56a50a0",
                "sha256": "194216c0d26bc7c5a2b7a201530fbc8102a278576b1249f09121ef6a2bf58de0"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp39-cp39-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3fbc3579fcb5f464491b1d01a56a50a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 287089,
            "upload_time": "2023-09-18T15:28:54",
            "upload_time_iso_8601": "2023-09-18T15:28:54.300178Z",
            "url": "https://files.pythonhosted.org/packages/e5/a8/446d4ea77597fa02b166c57f511fdda2b5fab22354a02d6c812e3b381f6d/lienv-0.5.0-cp39-cp39-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "49527f2efb6ac4a917b9f24e23b89328e5f9b80706c204bccf693be7c5ec8ee0",
                "md5": "533003153dbfcc9ecb7c2eeb946f2320",
                "sha256": "64cb2f8ecc5b63a4733aeda78ee323e0ce8c3b2087b8efcfb21325b477328690"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "533003153dbfcc9ecb7c2eeb946f2320",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 282706,
            "upload_time": "2023-09-18T15:28:55",
            "upload_time_iso_8601": "2023-09-18T15:28:55.977455Z",
            "url": "https://files.pythonhosted.org/packages/49/52/7f2efb6ac4a917b9f24e23b89328e5f9b80706c204bccf693be7c5ec8ee0/lienv-0.5.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "02bab918e256ad44e89385a7fef67f887648515c4f55a0c328258e41c0a47911",
                "md5": "7e08e4d78a1d1ba38edd55de91a76b0e",
                "sha256": "5de7a3fc521e30b84d709db04f8e0e9cf139a0196ee2521760201db85af97cbf"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7e08e4d78a1d1ba38edd55de91a76b0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1177905,
            "upload_time": "2023-09-18T15:28:57",
            "upload_time_iso_8601": "2023-09-18T15:28:57.852111Z",
            "url": "https://files.pythonhosted.org/packages/02/ba/b918e256ad44e89385a7fef67f887648515c4f55a0c328258e41c0a47911/lienv-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7ae38d594787a0163f3c518018c5383bc4245da6edad639a33a9989bb6387c0a",
                "md5": "8609eceeb8283aca2695c6d3d529fab7",
                "sha256": "5d068ef51dcf4aec6e4eacd72dfd51baae635529fa76c4fc6443c9d42bcb53f7"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8609eceeb8283aca2695c6d3d529fab7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1187014,
            "upload_time": "2023-09-18T15:28:59",
            "upload_time_iso_8601": "2023-09-18T15:28:59.588018Z",
            "url": "https://files.pythonhosted.org/packages/7a/e3/8d594787a0163f3c518018c5383bc4245da6edad639a33a9989bb6387c0a/lienv-0.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f4b0149fdedc937246f1afa009fcb1622e2e19ff72e04122fca3192760bff5d",
                "md5": "9ae0cdd658b39b0e08f5918aeca68fe0",
                "sha256": "512848bfb29f2c89fddeb342a60e0968389f89d738c87997ad5af2f1b17ab4dd"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9ae0cdd658b39b0e08f5918aeca68fe0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1295623,
            "upload_time": "2023-09-18T15:29:01",
            "upload_time_iso_8601": "2023-09-18T15:29:01.432788Z",
            "url": "https://files.pythonhosted.org/packages/5f/4b/0149fdedc937246f1afa009fcb1622e2e19ff72e04122fca3192760bff5d/lienv-0.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "16537feee391425b809f863d43e76b158282be9a36259ff51519f74e6da11207",
                "md5": "1576e2c629dafe52a4f1006a6483b634",
                "sha256": "a521e315810735609b3a9b91a29b270ec10a9bb79cc7eb9cb0df33bba308e263"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "1576e2c629dafe52a4f1006a6483b634",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1359423,
            "upload_time": "2023-09-18T15:29:03",
            "upload_time_iso_8601": "2023-09-18T15:29:03.474830Z",
            "url": "https://files.pythonhosted.org/packages/16/53/7feee391425b809f863d43e76b158282be9a36259ff51519f74e6da11207/lienv-0.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f702b17e344c0dd0b759943ae98f79a5e2398d5e7d5db90fdfaca739c328208",
                "md5": "5d353018032c8aff87ed4a3755599d5e",
                "sha256": "0796a1cf633e7545f378d764bb615650e5d707f6d32e4a4261a9407829c4b852"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d353018032c8aff87ed4a3755599d5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1182794,
            "upload_time": "2023-09-18T15:29:06",
            "upload_time_iso_8601": "2023-09-18T15:29:06.189629Z",
            "url": "https://files.pythonhosted.org/packages/2f/70/2b17e344c0dd0b759943ae98f79a5e2398d5e7d5db90fdfaca739c328208/lienv-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "60c886808ea31b0cbab4a24653b10be9f7a188541784b3eab87833b45e1fdd14",
                "md5": "395c6026f962e58cd64d4df031b0e49b",
                "sha256": "a96d681f30c5c41672634f44850a9a085426c5fdeb449a56fba01ed051f01712"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "395c6026f962e58cd64d4df031b0e49b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1197256,
            "upload_time": "2023-09-18T15:29:08",
            "upload_time_iso_8601": "2023-09-18T15:29:08.030934Z",
            "url": "https://files.pythonhosted.org/packages/60/c8/86808ea31b0cbab4a24653b10be9f7a188541784b3eab87833b45e1fdd14/lienv-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c27213bf98742bd40a39d654d608fc7d483f69184aff7e4a77350e7983e1d3ce",
                "md5": "accd14260d93982eb116798f4375fbbe",
                "sha256": "f739ff0450f3fb14a111fff5b483b6c51463da43785caf2d853a0101a26d2606"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "accd14260d93982eb116798f4375fbbe",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 144155,
            "upload_time": "2023-09-18T15:29:09",
            "upload_time_iso_8601": "2023-09-18T15:29:09.654645Z",
            "url": "https://files.pythonhosted.org/packages/c2/72/13bf98742bd40a39d654d608fc7d483f69184aff7e4a77350e7983e1d3ce/lienv-0.5.0-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d8452e672f330bf2feb92d0d6cb9ba7f9be1540c9a7a5280736f485dc4a62320",
                "md5": "242675d60b897d3fda953a770162731a",
                "sha256": "46bb9ffc07e0781b21b6ae2f0087e566ac95cc2c638a57fa8cbf33daa3b9415a"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "242675d60b897d3fda953a770162731a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 148811,
            "upload_time": "2023-09-18T15:29:11",
            "upload_time_iso_8601": "2023-09-18T15:29:11.631460Z",
            "url": "https://files.pythonhosted.org/packages/d8/45/2e672f330bf2feb92d0d6cb9ba7f9be1540c9a7a5280736f485dc4a62320/lienv-0.5.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a6fb52fc2b063b707c07da9e227626f4451e6698138fa8ea70e8ee31aa786a8",
                "md5": "2d153f642936923e6cb5ba2d48b1780a",
                "sha256": "eb205c5c56e4a7ec6f76d5ab232b14f9cfb17e3538538e4560dcd2c416d2ff4f"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2d153f642936923e6cb5ba2d48b1780a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1178748,
            "upload_time": "2023-09-18T15:29:13",
            "upload_time_iso_8601": "2023-09-18T15:29:13.565586Z",
            "url": "https://files.pythonhosted.org/packages/2a/6f/b52fc2b063b707c07da9e227626f4451e6698138fa8ea70e8ee31aa786a8/lienv-0.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "50d094f4bf322ae1d0b483df00b7c297de462dfeee89cd8040d2bc4a93e98364",
                "md5": "00beb6b22cbda81f8ae338068b5427af",
                "sha256": "2e2245302711ea1408a5598b3a152ece1c6f90a11b8557106748df751a15356e"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "00beb6b22cbda81f8ae338068b5427af",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1186702,
            "upload_time": "2023-09-18T15:29:16",
            "upload_time_iso_8601": "2023-09-18T15:29:16.065854Z",
            "url": "https://files.pythonhosted.org/packages/50/d0/94f4bf322ae1d0b483df00b7c297de462dfeee89cd8040d2bc4a93e98364/lienv-0.5.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7672b176ab902b7e4c1b187c30577e7cbc788e1e7221c0b1147c5d392485a33d",
                "md5": "7e58ae217a675da727cb6e6dd8657c19",
                "sha256": "ba2136f216bbe17b696da93cb9be1114133d587963ec7b7ac7c43a811d15106d"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7e58ae217a675da727cb6e6dd8657c19",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1295264,
            "upload_time": "2023-09-18T15:29:19",
            "upload_time_iso_8601": "2023-09-18T15:29:19.168169Z",
            "url": "https://files.pythonhosted.org/packages/76/72/b176ab902b7e4c1b187c30577e7cbc788e1e7221c0b1147c5d392485a33d/lienv-0.5.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "80521955d1f0e11193c5d9a5d651358528016991979a3f0d6928e174d7aeb42a",
                "md5": "70ecd1da1cb21a97e8a8e71de5039782",
                "sha256": "516485a0816e3e0279076246808f919bb2c0fc011491fa78f349e47b44e8608d"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "70ecd1da1cb21a97e8a8e71de5039782",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1361079,
            "upload_time": "2023-09-18T15:29:21",
            "upload_time_iso_8601": "2023-09-18T15:29:21.519163Z",
            "url": "https://files.pythonhosted.org/packages/80/52/1955d1f0e11193c5d9a5d651358528016991979a3f0d6928e174d7aeb42a/lienv-0.5.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8e5fe2bc3928a5bfc9299c9fbfa3d05539cd3e08bb2355e3c2f3474cb7a2fb4a",
                "md5": "66c366eca76f5bf2a2f34c4bdeef70bb",
                "sha256": "238a5885b58e51c8fb9e36462d533dd03df87d7ac2c7349200694c64cb9f675c"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "66c366eca76f5bf2a2f34c4bdeef70bb",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1182450,
            "upload_time": "2023-09-18T15:29:23",
            "upload_time_iso_8601": "2023-09-18T15:29:23.286839Z",
            "url": "https://files.pythonhosted.org/packages/8e/5f/e2bc3928a5bfc9299c9fbfa3d05539cd3e08bb2355e3c2f3474cb7a2fb4a/lienv-0.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b8d29bcf7a98dbe19666917e2d0ba1fc7c7b2d23295eac4c150473b9c79a06dc",
                "md5": "2a0f0e97435e1778272b22ded70021da",
                "sha256": "6ba7d1b0823aead26195722cffc729a420f60314d5ae2f1fb29c46fc843de3d7"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "2a0f0e97435e1778272b22ded70021da",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1197212,
            "upload_time": "2023-09-18T15:29:25",
            "upload_time_iso_8601": "2023-09-18T15:29:25.760059Z",
            "url": "https://files.pythonhosted.org/packages/b8/d2/9bcf7a98dbe19666917e2d0ba1fc7c7b2d23295eac4c150473b9c79a06dc/lienv-0.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "520df3e3cd6e8f0e5ccb11a4cdd163028cdd219614ed3113bea2ad0c3fbae0cb",
                "md5": "3ac75934e2fcac4dbe8e0884320e5472",
                "sha256": "dfa8997d90e094a44f43cdf1ce2d50f26523e675bef2d2d8b64426b5df15763b"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3ac75934e2fcac4dbe8e0884320e5472",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1182615,
            "upload_time": "2023-09-18T15:29:27",
            "upload_time_iso_8601": "2023-09-18T15:29:27.586097Z",
            "url": "https://files.pythonhosted.org/packages/52/0d/f3e3cd6e8f0e5ccb11a4cdd163028cdd219614ed3113bea2ad0c3fbae0cb/lienv-0.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "beb95177485e3fbf18420bd95ce09cd1501f2760efb24720a446bada8aabfce0",
                "md5": "000ca9945c2af3d22638cc70d62cadf9",
                "sha256": "6dbd1c4d9692360b015c0b664be6e6efbfb3ea8a0db28fd25e6af982a3ddb104"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "000ca9945c2af3d22638cc70d62cadf9",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1187200,
            "upload_time": "2023-09-18T15:29:30",
            "upload_time_iso_8601": "2023-09-18T15:29:30.043666Z",
            "url": "https://files.pythonhosted.org/packages/be/b9/5177485e3fbf18420bd95ce09cd1501f2760efb24720a446bada8aabfce0/lienv-0.5.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd8a02fb9f5727eaf8ccbe05eb13ab07fad97ca3da437cb6148ec93974d21fee",
                "md5": "86234fccdd0b9541604ec3fa38080225",
                "sha256": "09a508807ffcbedee3186ab6b3d1d1bf1c7999f44dcd466147d228f6b5d82443"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "86234fccdd0b9541604ec3fa38080225",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1295762,
            "upload_time": "2023-09-18T15:29:31",
            "upload_time_iso_8601": "2023-09-18T15:29:31.675063Z",
            "url": "https://files.pythonhosted.org/packages/bd/8a/02fb9f5727eaf8ccbe05eb13ab07fad97ca3da437cb6148ec93974d21fee/lienv-0.5.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e42e998207e9702d917fe38c61e2e94704bb771267bed76df1c8150df807ebd",
                "md5": "f3511a15ada9c56b8365acc81dd8817f",
                "sha256": "dc1a2529ad180aeb7d8be8bdcd37fe5bcdd68365d55c77460617260dc4a5da5c"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f3511a15ada9c56b8365acc81dd8817f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1360560,
            "upload_time": "2023-09-18T15:29:33",
            "upload_time_iso_8601": "2023-09-18T15:29:33.784398Z",
            "url": "https://files.pythonhosted.org/packages/4e/42/e998207e9702d917fe38c61e2e94704bb771267bed76df1c8150df807ebd/lienv-0.5.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bb1175ee58bd800f0695f7a37a8ddb9bcd7aa65ac9c8985e5e6314bb2ef1984c",
                "md5": "968d5d875c5ba27b6af68ce3b7c076fb",
                "sha256": "e8a1b6b363568da2f10bdd2c4964dfab2be161c3f56c6f8ac527524f9b1eea7a"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "968d5d875c5ba27b6af68ce3b7c076fb",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1182974,
            "upload_time": "2023-09-18T15:29:35",
            "upload_time_iso_8601": "2023-09-18T15:29:35.569691Z",
            "url": "https://files.pythonhosted.org/packages/bb/11/75ee58bd800f0695f7a37a8ddb9bcd7aa65ac9c8985e5e6314bb2ef1984c/lienv-0.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed5272cc121ba5cc6720e774fc1dd207b7aff3691dc591d819da67217ca0c4fb",
                "md5": "9e106b3df68d425f5e19b7fde7ebbe3f",
                "sha256": "68fb41260bd0d249bd142ab977561f11c29ef783a2a5e2e52085d9283fd94355"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "9e106b3df68d425f5e19b7fde7ebbe3f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1197670,
            "upload_time": "2023-09-18T15:29:37",
            "upload_time_iso_8601": "2023-09-18T15:29:37.854667Z",
            "url": "https://files.pythonhosted.org/packages/ed/52/72cc121ba5cc6720e774fc1dd207b7aff3691dc591d819da67217ca0c4fb/lienv-0.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1629530840ad1731cb415da5e00d4841424fb8b847ffa1ce67ac8325f152430f",
                "md5": "746ceaee7697f1bde472c59fdca75e84",
                "sha256": "4f24bf0eb551805cb0a7238ade410b852a6ce735473c0ea245fe6a4d54d2d79a"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "746ceaee7697f1bde472c59fdca75e84",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1178635,
            "upload_time": "2023-09-18T15:29:39",
            "upload_time_iso_8601": "2023-09-18T15:29:39.781719Z",
            "url": "https://files.pythonhosted.org/packages/16/29/530840ad1731cb415da5e00d4841424fb8b847ffa1ce67ac8325f152430f/lienv-0.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "048494c1c594db283f1c02255ebd92d7ac4274efeddafe12ef6046daabe93d9b",
                "md5": "758e264c02a670aff8b8a822748d6c13",
                "sha256": "a99adc104867fbac1d7846cf4763f02af5ecd57d1b24937d96738bfded7f31ce"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "758e264c02a670aff8b8a822748d6c13",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1186755,
            "upload_time": "2023-09-18T15:29:41",
            "upload_time_iso_8601": "2023-09-18T15:29:41.824301Z",
            "url": "https://files.pythonhosted.org/packages/04/84/94c1c594db283f1c02255ebd92d7ac4274efeddafe12ef6046daabe93d9b/lienv-0.5.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3519df8ce45ebf5da79f3c204e66cbb74b3294ddd81a4359b374a9f8314ee326",
                "md5": "d8fb5bcae48dbb875e7b51b0d6cb1d10",
                "sha256": "9fa1c2b7c49920e3286bb59268280a20722013eff8a060a2e65aa1a8b93787d5"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d8fb5bcae48dbb875e7b51b0d6cb1d10",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1295191,
            "upload_time": "2023-09-18T15:29:43",
            "upload_time_iso_8601": "2023-09-18T15:29:43.773446Z",
            "url": "https://files.pythonhosted.org/packages/35/19/df8ce45ebf5da79f3c204e66cbb74b3294ddd81a4359b374a9f8314ee326/lienv-0.5.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e3789de92354e759e411fbd2fd9bb4444fad07df25420004e73a02066bf66adc",
                "md5": "9fadbdeb4a13cfbf42f16ee1436fe98a",
                "sha256": "359996dd73c520fcc9315802f81404c7fc08e2134bc4d866ab99665df1292846"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "9fadbdeb4a13cfbf42f16ee1436fe98a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1361064,
            "upload_time": "2023-09-18T15:29:46",
            "upload_time_iso_8601": "2023-09-18T15:29:46.177961Z",
            "url": "https://files.pythonhosted.org/packages/e3/78/9de92354e759e411fbd2fd9bb4444fad07df25420004e73a02066bf66adc/lienv-0.5.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d3ff67326a63e8e856451fc28d1a4607dfaff6ad9d53a06ab3c12b12f74dfd85",
                "md5": "b9323d8ee75d63ee74af183ef0380e8f",
                "sha256": "62f33fe9642dd9a76442690aff42430c79d61dc6b976cae635143a243f41172a"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b9323d8ee75d63ee74af183ef0380e8f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1182378,
            "upload_time": "2023-09-18T15:29:48",
            "upload_time_iso_8601": "2023-09-18T15:29:48.007523Z",
            "url": "https://files.pythonhosted.org/packages/d3/ff/67326a63e8e856451fc28d1a4607dfaff6ad9d53a06ab3c12b12f74dfd85/lienv-0.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bfe2d56f514c475ec0dc86284f48a66fe4d7fde7357467351aaafc77bfb7b55b",
                "md5": "f542dd6082457a70797ef827380a0242",
                "sha256": "0b6d8b584f4c4fa7dd790082eabcc1ef453d1c9d728eea580c1bdf331c7d3632"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "f542dd6082457a70797ef827380a0242",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1197171,
            "upload_time": "2023-09-18T15:29:50",
            "upload_time_iso_8601": "2023-09-18T15:29:50.517826Z",
            "url": "https://files.pythonhosted.org/packages/bf/e2/d56f514c475ec0dc86284f48a66fe4d7fde7357467351aaafc77bfb7b55b/lienv-0.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "47f9e5aac5ed95176234606d49059d5dec901ea4777b5ffa3165f055f5cdd25e",
                "md5": "fc8f0def75c6b87a808245b129340909",
                "sha256": "d66380e322513c4bb715c5ab6530720c2c927e6adc1640d5fa7d1045ea5cde90"
            },
            "downloads": -1,
            "filename": "lienv-0.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "fc8f0def75c6b87a808245b129340909",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 8994,
            "upload_time": "2023-09-18T15:29:51",
            "upload_time_iso_8601": "2023-09-18T15:29:51.898876Z",
            "url": "https://files.pythonhosted.org/packages/47/f9/e5aac5ed95176234606d49059d5dec901ea4777b5ffa3165f055f5cdd25e/lienv-0.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-18 15:29:51",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "liander-medeiros",
    "github_project": "lienv-py",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "lienv"
}
        
Elapsed time: 0.11378s