adelie


Nameadelie JSON
Version 1.1.51 PyPI version JSON
download
home_pageNone
SummaryA fast, flexible package for group elastic net.
upload_time2024-11-27 06:06:50
maintainerJames Yang
docs_urlNone
authorJames Yang
requires_python>=3.9
licenseMIT License Copyright (c) 2023 James Yang Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords group lasso group elastic net lasso elastic net
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h1 align="center">
<img src="https://raw.githubusercontent.com/JamesYang007/adelie/main/docs/logos/adelie-penguin.svg" width="500">
</h1><br>

![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/JamesYang007/adelie/test_docs.yml)
[![Downloads](https://static.pepy.tech/badge/adelie)](https://pepy.tech/project/adelie)
[![Downloads](https://static.pepy.tech/badge/adelie/month)](https://pepy.tech/project/adelie)
![versions](https://img.shields.io/pypi/pyversions/adelie.svg)
![PyPI - Version](https://img.shields.io/pypi/v/adelie)
![GitHub Release](https://img.shields.io/github/v/release/JamesYang007/adelie)

Adelie is a fast and flexible Python package for solving 
lasso, elastic net, group lasso, and group elastic net problems. 

- **Installation**: [https://jamesyang007.github.io/adelie/notebooks/installation.html](https://jamesyang007.github.io/adelie/notebooks/installation.html)
- **Documentation**: [https://jamesyang007.github.io/adelie](https://jamesyang007.github.io/adelie/)
- **Source code**: [https://github.com/JamesYang007/adelie](https://github.com/JamesYang007/adelie)
- **Issue Tracker**: [https://github.com/JamesYang007/adelie/issues](https://github.com/JamesYang007/adelie/issues)

It offers a general purpose group elastic net solver, 
a wide range of matrix classes that can exploit special structure to allow large-scale inputs,
and an assortment of generalized linear model (GLM) classes for fitting various types of data.
These matrix and GLM classes can be extended by the user for added flexibility.
Many inner routines such as matrix-vector products
and gradient, hessian, and loss of GLM functions have been heavily optimized and parallelized.
Algorithmic optimizations such as the pivot rule for screening variables
and the proximal Newton method have been carefully tuned for convergence and numerical stability.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "adelie",
    "maintainer": "James Yang",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "James Yang <jamesyang916@gmail.com>",
    "keywords": "group lasso, group elastic net, lasso, elastic net",
    "author": "James Yang",
    "author_email": "James Yang <jamesyang916@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/cd/98/e3e299d76cd7ad08362d84e7d25c2a309199111b58a1a415deb960ebca64/adelie-1.1.51.tar.gz",
    "platform": null,
    "description": "<h1 align=\"center\">\n<img src=\"https://raw.githubusercontent.com/JamesYang007/adelie/main/docs/logos/adelie-penguin.svg\" width=\"500\">\n</h1><br>\n\n![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/JamesYang007/adelie/test_docs.yml)\n[![Downloads](https://static.pepy.tech/badge/adelie)](https://pepy.tech/project/adelie)\n[![Downloads](https://static.pepy.tech/badge/adelie/month)](https://pepy.tech/project/adelie)\n![versions](https://img.shields.io/pypi/pyversions/adelie.svg)\n![PyPI - Version](https://img.shields.io/pypi/v/adelie)\n![GitHub Release](https://img.shields.io/github/v/release/JamesYang007/adelie)\n\nAdelie is a fast and flexible Python package for solving \nlasso, elastic net, group lasso, and group elastic net problems. \n\n- **Installation**: [https://jamesyang007.github.io/adelie/notebooks/installation.html](https://jamesyang007.github.io/adelie/notebooks/installation.html)\n- **Documentation**: [https://jamesyang007.github.io/adelie](https://jamesyang007.github.io/adelie/)\n- **Source code**: [https://github.com/JamesYang007/adelie](https://github.com/JamesYang007/adelie)\n- **Issue Tracker**: [https://github.com/JamesYang007/adelie/issues](https://github.com/JamesYang007/adelie/issues)\n\nIt offers a general purpose group elastic net solver, \na wide range of matrix classes that can exploit special structure to allow large-scale inputs,\nand an assortment of generalized linear model (GLM) classes for fitting various types of data.\nThese matrix and GLM classes can be extended by the user for added flexibility.\nMany inner routines such as matrix-vector products\nand gradient, hessian, and loss of GLM functions have been heavily optimized and parallelized.\nAlgorithmic optimizations such as the pivot rule for screening variables\nand the proximal Newton method have been carefully tuned for convergence and numerical stability.\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2023 James Yang  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "A fast, flexible package for group elastic net.",
    "version": "1.1.51",
    "project_urls": {
        "Documentation": "https://jamesyang007.github.io/adelie",
        "Homepage": "https://github.com/JamesYang007/adelie",
        "Repository": "https://github.com/JamesYang007/adelie"
    },
    "split_keywords": [
        "group lasso",
        " group elastic net",
        " lasso",
        " elastic net"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9414e439581c3bd5cbeea7dd5bf08888feb0797d384f69d68e750ec2c9c3853",
                "md5": "b94e136796d492b08fd4f16f119fd370",
                "sha256": "85b025e56131f7f8d59c3c1f8987380402ff9b0d975905bc894be2e769b87a4d"
            },
            "downloads": -1,
            "filename": "adelie-1.1.51-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b94e136796d492b08fd4f16f119fd370",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3696843,
            "upload_time": "2024-11-27T06:06:16",
            "upload_time_iso_8601": "2024-11-27T06:06:16.738888Z",
            "url": "https://files.pythonhosted.org/packages/c9/41/4e439581c3bd5cbeea7dd5bf08888feb0797d384f69d68e750ec2c9c3853/adelie-1.1.51-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3030cb6dba463f117be44982e720b6542806f59099165513ad0977d385db4ee",
                "md5": "2df0e0095756c41190ee477541269b3b",
                "sha256": "3e0bb3ecc02f8555e3ca5653489095a3e32dfa6a7b392e7667f0ca53c6c4e712"
            },
            "downloads": -1,
            "filename": "adelie-1.1.51-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2df0e0095756c41190ee477541269b3b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3076824,
            "upload_time": "2024-11-27T06:06:19",
            "upload_time_iso_8601": "2024-11-27T06:06:19.406120Z",
            "url": "https://files.pythonhosted.org/packages/b3/03/0cb6dba463f117be44982e720b6542806f59099165513ad0977d385db4ee/adelie-1.1.51-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7964619cff38503e742cd2500243e74b2b6c3295e2b1530b9ddd68038e9112a0",
                "md5": "185da1f679aa8bcb3da402d4fe8b9bed",
                "sha256": "092d4c10c845d1ff29da1daea64b43c3903696ff969b47723a627fd533788430"
            },
            "downloads": -1,
            "filename": "adelie-1.1.51-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "185da1f679aa8bcb3da402d4fe8b9bed",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3575734,
            "upload_time": "2024-11-27T06:06:21",
            "upload_time_iso_8601": "2024-11-27T06:06:21.672537Z",
            "url": "https://files.pythonhosted.org/packages/79/64/619cff38503e742cd2500243e74b2b6c3295e2b1530b9ddd68038e9112a0/adelie-1.1.51-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e88cadd03492ac49cae3afab23556f23b19f2f1ece265961d1a6f0e242bc3d01",
                "md5": "04a52865960992fde202998c99fb6244",
                "sha256": "0d52904b1851650cb0b5cbb72a7c711bf210a39f6d45aafc4cc113b83cc0310f"
            },
            "downloads": -1,
            "filename": "adelie-1.1.51-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "04a52865960992fde202998c99fb6244",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2091746,
            "upload_time": "2024-11-27T06:06:23",
            "upload_time_iso_8601": "2024-11-27T06:06:23.294232Z",
            "url": "https://files.pythonhosted.org/packages/e8/8c/add03492ac49cae3afab23556f23b19f2f1ece265961d1a6f0e242bc3d01/adelie-1.1.51-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "106fecd3f1f185a98c70f215516227e9b1d1d6e6d88757e67ca5a2eae03fad34",
                "md5": "9459dbfee57fbc72dec1a735ff8d64db",
                "sha256": "ccaa73f7cd939d3dfc3b398d7e3e0858769a694d3ca44cdbd4b32539ccbd86c7"
            },
            "downloads": -1,
            "filename": "adelie-1.1.51-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9459dbfee57fbc72dec1a735ff8d64db",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3698758,
            "upload_time": "2024-11-27T06:06:25",
            "upload_time_iso_8601": "2024-11-27T06:06:25.430800Z",
            "url": "https://files.pythonhosted.org/packages/10/6f/ecd3f1f185a98c70f215516227e9b1d1d6e6d88757e67ca5a2eae03fad34/adelie-1.1.51-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "34b18bdcbeaf828315cbf186623e9b68a0100d1f501f6cfbd030a910d10ed276",
                "md5": "78f123b431d6e0384b3cab1e1788ecc4",
                "sha256": "ef0e468b3c5e0d84cbb9923b6fc147f6a0e4c4eed8d15e6ac875f658ba7049f8"
            },
            "downloads": -1,
            "filename": "adelie-1.1.51-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "78f123b431d6e0384b3cab1e1788ecc4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3078878,
            "upload_time": "2024-11-27T06:06:27",
            "upload_time_iso_8601": "2024-11-27T06:06:27.699382Z",
            "url": "https://files.pythonhosted.org/packages/34/b1/8bdcbeaf828315cbf186623e9b68a0100d1f501f6cfbd030a910d10ed276/adelie-1.1.51-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "62afc97d46aa96bbf5e9a5778470d25f0a96e7abdb1c9cc7bb331fe543f7b60c",
                "md5": "f0dba7c24126aa61e48b0aba93aead37",
                "sha256": "09d8ea9b42888ea00220d2a9b1c090c5cc02c1da5bd199260fedd68780eda46a"
            },
            "downloads": -1,
            "filename": "adelie-1.1.51-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f0dba7c24126aa61e48b0aba93aead37",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3578539,
            "upload_time": "2024-11-27T06:06:29",
            "upload_time_iso_8601": "2024-11-27T06:06:29.922237Z",
            "url": "https://files.pythonhosted.org/packages/62/af/c97d46aa96bbf5e9a5778470d25f0a96e7abdb1c9cc7bb331fe543f7b60c/adelie-1.1.51-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b312287e9b74ac1943b1b4bda62a1022b81ac6fea4aae340325cded0e65ea4b4",
                "md5": "2fe9b13720fc04e648926d2bf96013b8",
                "sha256": "3d603469aa13944b1036f1a3a98aa4838e066c099bdd82a5552885bd5fb75552"
            },
            "downloads": -1,
            "filename": "adelie-1.1.51-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2fe9b13720fc04e648926d2bf96013b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2092412,
            "upload_time": "2024-11-27T06:06:31",
            "upload_time_iso_8601": "2024-11-27T06:06:31.616008Z",
            "url": "https://files.pythonhosted.org/packages/b3/12/287e9b74ac1943b1b4bda62a1022b81ac6fea4aae340325cded0e65ea4b4/adelie-1.1.51-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0af0c2be1f4cb4f9f2a86e07f802ba436ebd3c6318bf9fa89213a4f851de73b",
                "md5": "a6e2a3a8c3fc39f5bf3bac7d86fe7161",
                "sha256": "5ac558ee7f4969307235bd35291e4528681a956fca9e6ece468d72d5ef65ad18"
            },
            "downloads": -1,
            "filename": "adelie-1.1.51-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a6e2a3a8c3fc39f5bf3bac7d86fe7161",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3741128,
            "upload_time": "2024-11-27T06:06:33",
            "upload_time_iso_8601": "2024-11-27T06:06:33.937307Z",
            "url": "https://files.pythonhosted.org/packages/e0/af/0c2be1f4cb4f9f2a86e07f802ba436ebd3c6318bf9fa89213a4f851de73b/adelie-1.1.51-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a6af27f4392684f78d03ad6e31f14f87ddfa1634f1ba588f9162fd8a790ee43a",
                "md5": "e3a0f57dfdeab4c7c0b4795f09434922",
                "sha256": "b63aa66812c69a32eff7cc28aeb0fa0b00e825c3046fa34c19b23e91b18729af"
            },
            "downloads": -1,
            "filename": "adelie-1.1.51-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e3a0f57dfdeab4c7c0b4795f09434922",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3109274,
            "upload_time": "2024-11-27T06:06:35",
            "upload_time_iso_8601": "2024-11-27T06:06:35.840075Z",
            "url": "https://files.pythonhosted.org/packages/a6/af/27f4392684f78d03ad6e31f14f87ddfa1634f1ba588f9162fd8a790ee43a/adelie-1.1.51-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "852c69e07e4ef6955999a060287bdb6edd1ce56f89e8010ee34fa3a77b445ca9",
                "md5": "932659e0b8c47f55f286c982840dbfef",
                "sha256": "06080207f5cf8b192e78b350527f01410659c29a3ae97baf638e37809735e10a"
            },
            "downloads": -1,
            "filename": "adelie-1.1.51-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "932659e0b8c47f55f286c982840dbfef",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3570625,
            "upload_time": "2024-11-27T06:06:37",
            "upload_time_iso_8601": "2024-11-27T06:06:37.521267Z",
            "url": "https://files.pythonhosted.org/packages/85/2c/69e07e4ef6955999a060287bdb6edd1ce56f89e8010ee34fa3a77b445ca9/adelie-1.1.51-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c28cc17dfc72cc49a5de34d3b8785cf43f5540fa5fc05065fa2acc42a90713a5",
                "md5": "feb52e781aceea45febec8c0cc1b3533",
                "sha256": "029ff9df5cbb3a32b0cc3f1cb99c4d77d7d971ac18ada38900addf7fcf68c5b3"
            },
            "downloads": -1,
            "filename": "adelie-1.1.51-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "feb52e781aceea45febec8c0cc1b3533",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2095525,
            "upload_time": "2024-11-27T06:06:39",
            "upload_time_iso_8601": "2024-11-27T06:06:39.949266Z",
            "url": "https://files.pythonhosted.org/packages/c2/8c/c17dfc72cc49a5de34d3b8785cf43f5540fa5fc05065fa2acc42a90713a5/adelie-1.1.51-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "93ba364082fe2737688f0d90546ef4edce041a4c538d482558d7000287801d8b",
                "md5": "47d5a5f919d8f277993a2075ddeb44ed",
                "sha256": "8a3a1f2c54275b91ee684148e71742db9393fb8838d6fb3c231c66c96fb0b5b7"
            },
            "downloads": -1,
            "filename": "adelie-1.1.51-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "47d5a5f919d8f277993a2075ddeb44ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3696820,
            "upload_time": "2024-11-27T06:06:43",
            "upload_time_iso_8601": "2024-11-27T06:06:43.528854Z",
            "url": "https://files.pythonhosted.org/packages/93/ba/364082fe2737688f0d90546ef4edce041a4c538d482558d7000287801d8b/adelie-1.1.51-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26dde56ad028ee0e9e9b1110c47fbf305da399e543758491373e156bb82ef238",
                "md5": "69e4fc5f103a3aa3725789b53ebf49f5",
                "sha256": "910f7cbbb81b0fb14d3d66ce7521856dd4a7ace9f6e34bc8323cb92185cc8d6f"
            },
            "downloads": -1,
            "filename": "adelie-1.1.51-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "69e4fc5f103a3aa3725789b53ebf49f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3077024,
            "upload_time": "2024-11-27T06:06:45",
            "upload_time_iso_8601": "2024-11-27T06:06:45.396372Z",
            "url": "https://files.pythonhosted.org/packages/26/dd/e56ad028ee0e9e9b1110c47fbf305da399e543758491373e156bb82ef238/adelie-1.1.51-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a429db3e8f622a6157aaa02424585d694f8c3e74dc02a7ad442db99abba6753",
                "md5": "3840e65b41935fa6797646c91eec1790",
                "sha256": "eef5d86b30c38cf54af92f0834f247e3f1c0ec727665ded69564d7e7b21b8ac4"
            },
            "downloads": -1,
            "filename": "adelie-1.1.51-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3840e65b41935fa6797646c91eec1790",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3578822,
            "upload_time": "2024-11-27T06:06:47",
            "upload_time_iso_8601": "2024-11-27T06:06:47.045723Z",
            "url": "https://files.pythonhosted.org/packages/3a/42/9db3e8f622a6157aaa02424585d694f8c3e74dc02a7ad442db99abba6753/adelie-1.1.51-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b7e84c7c83e88c2e7dfb4a22a8530f0b822978e0e4442909d08ee744da697d9",
                "md5": "ced03afe06cdabbed73fa56dfee763cc",
                "sha256": "906e1b55e0b7100d43d8201a8225438a610ce869a05b954590cd72d9c13b3127"
            },
            "downloads": -1,
            "filename": "adelie-1.1.51-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ced03afe06cdabbed73fa56dfee763cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2166957,
            "upload_time": "2024-11-27T06:06:49",
            "upload_time_iso_8601": "2024-11-27T06:06:49.360130Z",
            "url": "https://files.pythonhosted.org/packages/2b/7e/84c7c83e88c2e7dfb4a22a8530f0b822978e0e4442909d08ee744da697d9/adelie-1.1.51-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd98e3e299d76cd7ad08362d84e7d25c2a309199111b58a1a415deb960ebca64",
                "md5": "afbbd2d68346ce5c5b5b8efac2ec05e1",
                "sha256": "933efc2df619a91ac93ce0214f7d0343abbca518c013c804d73e5de05f64219c"
            },
            "downloads": -1,
            "filename": "adelie-1.1.51.tar.gz",
            "has_sig": false,
            "md5_digest": "afbbd2d68346ce5c5b5b8efac2ec05e1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 169888,
            "upload_time": "2024-11-27T06:06:50",
            "upload_time_iso_8601": "2024-11-27T06:06:50.753941Z",
            "url": "https://files.pythonhosted.org/packages/cd/98/e3e299d76cd7ad08362d84e7d25c2a309199111b58a1a415deb960ebca64/adelie-1.1.51.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-27 06:06:50",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "JamesYang007",
    "github_project": "adelie",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "adelie"
}
        
Elapsed time: 0.36757s