{ "info": { "author": "Aaron Bach", "author_email": "bachya1208@gmail.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy" ], "description": "# \u267b\ufe0f aioridwell: A Python3, asyncio-based API for interacting with Ridwell\n\n[![CI][ci-badge]][ci]\n[![PyPI][pypi-badge]][pypi]\n[![Version][version-badge]][version]\n[![License][license-badge]][license]\n[![Code Coverage][codecov-badge]][codecov]\n[![Maintainability][maintainability-badge]][maintainability]\n\n\"Buy\n\n`aioridwell` is a Python 3, asyncio-friendly library for interacting with\n[Ridwell][ridwell] to view information on upcoming recycling pickups.\n\n- [Installation](#installation)\n- [Python Versions](#python-versions)\n- [Usage](#usage)\n- [Contributing](#contributing)\n\n# Installation\n\n```bash\npip install aioridwell\n```\n\n# Python Versions\n\n`aioridwell` is currently supported on:\n\n- Python 3.10\n- Python 3.11\n- Python 3.12\n\n# Usage\n\n## Creating and Using a Client\n\nThe `Client` is the primary method of interacting with the API:\n\n```python\nimport asyncio\n\nfrom aioridwell import async_get_client\n\n\nasync def main() -> None:\n client = await async_get_client(\"\", \"\")\n # ...\n\n\nasyncio.run(main())\n```\n\nBy default, the library creates a new connection to the API with each coroutine. If\nyou are calling a large number of coroutines (or merely want to squeeze out every second\nof runtime savings possible), an [`aiohttp`][aiohttp] `ClientSession` can be used for\nconnection pooling:\n\n```python\nimport asyncio\n\nfrom aiohttp import ClientSession\n\nfrom aiowatttime import Client\n\n\nasync def main() -> None:\n async with ClientSession() as session:\n client = await async_get_client(\"\", \"\", session=session)\n # ...\n\n\nasyncio.run(main())\n```\n\n## Getting the User's Dashboard URL\n\n```python\nimport asyncio\n\nfrom aioridwell import async_get_client\n\n\nasync def main() -> None:\n client = await async_get_client(\"\", \"\")\n client.get_dashboard_url()\n # >>> https://www.ridwell.com/users/userId1/dashboard\n\n\nasyncio.run(main())\n```\n\n## Getting Accounts\n\nGetting all accounts associated with this email address is easy:\n\n```python\nimport asyncio\n\nfrom aioridwell import async_get_client\n\n\nasync def main() -> None:\n client = await async_get_client(\"\", \"\")\n\n accounts = await client.async_get_accounts()\n # >>> {\"account_id_1\": RidwellAccount(...), ...}\n\n\nasyncio.run(main())\n```\n\nThe `RidwellAccount` object comes with some useful properties:\n\n- `account_id`: the Ridwell ID for the account\n- `address`: the address being serviced\n- `email`: the email address on the account\n- `full_name`: the full name of the account owner\n- `phone`: the phone number of the account owner\n- `subscription_id`: the Ridwell ID for the primary subscription\n- `subscription_active`: whether the primary subscription is active\n\n## Getting Pickup Events\n\nGetting pickup events associated with an account is easy, too:\n\n```python\nimport asyncio\n\nfrom aioridwell import async_get_client\n\n\nasync def main() -> None:\n client = await async_get_client(\"\", \"\")\n\n accounts = await client.async_get_accounts()\n for account in accounts.values():\n events = await account.async_get_pickup_events()\n # >>> [RidwellPickupEvent(...), ...]\n\n # You can also get just the next pickup event from today's date:\n next_event = await account.async_get_next_pickup_event()\n # >>> RidwellPickupEvent(...)\n\n\nasyncio.run(main())\n```\n\nThe `RidwellPickupEvent` object comes with some useful properties:\n\n- `pickup_date`: the date of the pickup (in `datetime.date` format)\n- `pickups`: a list of `RidwellPickup` objects\n- `state`: an `EventState` enum whose name represents the current state of the pickup event\n\nLikewise, the `RidwellPickup` object comes with some useful properties:\n\n- `category`: a `PickupCategory` enum whose name represents the type of pickup\n- `name`: the name of the item being picked up\n- `offer_id`: the Ridwell ID for this particular offer\n- `priority`: the pickup priority\n- `product_id`: the Ridwell ID for this particular product\n- `quantity`: the amount of the product being picked up\n\n### Opting Into or Out Of a Pickup Event\n\n```python\nimport asyncio\n\nfrom aioridwell import async_get_client\n\n\nasync def main() -> None:\n client = await async_get_client(\"\", \"\")\n\n accounts = await client.async_get_accounts()\n for account in accounts.values():\n events = await account.async_get_pickup_events()\n # >>> [RidwellPickupEvent(...), ...]\n\n await events[0].async_opt_in()\n await events[0].async_opt_out()\n\n\nasyncio.run(main())\n```\n\n### Calculating a Pickup Event's Estimated Add-on Cost\n\n```python\nimport asyncio\n\nfrom aioridwell import async_get_client\n\n\nasync def main() -> None:\n client = await async_get_client(\"\", \"\")\n\n accounts = await client.async_get_accounts()\n for account in accounts.values():\n events = await account.async_get_pickup_events()\n # >>> [RidwellPickupEvent(...), ...]\n\n event_1_cost = await events[0].async_get_estimated_addon_cost()\n # >>> 22.00\n\n\nasyncio.run(main())\n```\n\n# Contributing\n\nThanks to all of [our contributors][contributors] so far!\n\n1. [Check for open features/bugs][issues] or [initiate a discussion on one][new-issue].\n2. [Fork the repository][fork].\n3. (_optional, but highly recommended_) Create a virtual environment: `python3 -m venv .venv`\n4. (_optional, but highly recommended_) Enter the virtual environment: `source ./.venv/bin/activate`\n5. Install the dev environment: `script/setup`\n6. Code your new feature or bug fix on a new branch.\n7. Write tests that cover your new functionality.\n8. Run tests and ensure 100% code coverage: `poetry run pytest --cov aioridwell tests`\n9. Update `README.md` with any new documentation.\n10. Submit a pull request!\n\n[aiohttp]: https://github.com/aio-libs/aiohttp\n[ci-badge]: https://img.shields.io/github/actions/workflow/status/bachya/aioridwell/test.yml\n[ci]: https://github.com/bachya/aioridwell/actions\n[codecov-badge]: https://codecov.io/gh/bachya/aioridwell/branch/dev/graph/badge.svg\n[codecov]: https://codecov.io/gh/bachya/aioridwell\n[contributors]: https://github.com/bachya/aioridwell/graphs/contributors\n[fork]: https://github.com/bachya/aioridwell/fork\n[issues]: https://github.com/bachya/aioridwell/issues\n[license-badge]: https://img.shields.io/pypi/l/aioridwell.svg\n[license]: https://github.com/bachya/aioridwell/blob/main/LICENSE\n[maintainability-badge]: https://api.codeclimate.com/v1/badges/9c1dcc1c991cecb06eda/maintainability\n[maintainability]: https://codeclimate.com/github/bachya/aioridwell/maintainability\n[new-issue]: https://github.com/bachya/aioridwell/issues/new\n[new-issue]: https://github.com/bachya/aioridwell/issues/new\n[pypi-badge]: https://img.shields.io/pypi/v/aioridwell.svg\n[pypi]: https://pypi.python.org/pypi/aioridwell\n[ridwell]: https://ridwell.com\n[version-badge]: https://img.shields.io/pypi/pyversions/aioridwell.svg\n[version]: https://pypi.python.org/pypi/aioridwell\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/bachya/aioridwell", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "aioridwell", "package_url": "https://pypi.org/project/aioridwell/", "platform": null, "project_url": "https://pypi.org/project/aioridwell/", "project_urls": { "Bug Tracker": "https://github.com/bachya/aioridwell/issues", "Changelog": "https://github.com/bachya/aioridwell/releases", "Homepage": "https://github.com/bachya/aioridwell", "Repository": "https://github.com/bachya/aioridwell" }, "release_url": "https://pypi.org/project/aioridwell/2024.1.0/", "requires_dist": [ "PyJWT (>=2.4.0)", "aiohttp (>=3.9.0b0)", "certifi (>=2023.07.22)", "titlecase (>=2.3,<3.0)", "yarl (>=1.9.2)" ], "requires_python": ">=3.10,<4.0", "summary": "A Python3, asyncio-based API for interacting with Ridwell waste recycling", "version": "2024.1.0", "yanked": false, "yanked_reason": null }, "last_serial": 21439192, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "blake2b_256": "55897bf2bdae524d3dcacc043a32b6288a04cecdb7d8875f8da62dfd85c89f6d", "md5": "d2f34f7ba55540d677f7b3029777464a", "sha256": "af8e49b9a0612e2520e46439e7d035ee5b4ac0dec316f0d542e0df6b94257f75" }, "downloads": -1, "filename": "aioridwell-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d2f34f7ba55540d677f7b3029777464a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8.0,<4.0.0", "size": 2768, "upload_time": "2021-10-12T20:06:09", "upload_time_iso_8601": "2021-10-12T20:06:09.355715Z", "url": "https://files.pythonhosted.org/packages/55/89/7bf2bdae524d3dcacc043a32b6288a04cecdb7d8875f8da62dfd85c89f6d/aioridwell-0.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a9330793dd16950521994848c58e266083c2a51fb027b6e15b700a77fbe85171", "md5": "5aff21d4b910e7b30ffefd2a3801e789", "sha256": "339d10f71d5d1ecfa4b83de529ac9a3474b2f37a08d03df0f705c716fb711541" }, "downloads": -1, "filename": "aioridwell-0.0.1.tar.gz", "has_sig": false, "md5_digest": "5aff21d4b910e7b30ffefd2a3801e789", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8.0,<4.0.0", "size": 3301, "upload_time": "2021-10-12T20:06:11", "upload_time_iso_8601": "2021-10-12T20:06:11.236197Z", "url": "https://files.pythonhosted.org/packages/a9/33/0793dd16950521994848c58e266083c2a51fb027b6e15b700a77fbe85171/aioridwell-0.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.0": [ { "comment_text": "", "digests": { "blake2b_256": "e89933612a8a273b82fb9f56860222f0498cb5df87f45fa4cee9ad963e60182c", "md5": "096cde82aabb1147ea5bea2b47946b14", "sha256": "38d13c2c71e10679226bf7703562d87cf0718da8ca07bdfb5bd9c3e408d275b9" }, "downloads": -1, "filename": "aioridwell-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "096cde82aabb1147ea5bea2b47946b14", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8.0,<4.0.0", "size": 8558, "upload_time": "2021-10-12T20:34:58", "upload_time_iso_8601": "2021-10-12T20:34:58.871186Z", "url": "https://files.pythonhosted.org/packages/e8/99/33612a8a273b82fb9f56860222f0498cb5df87f45fa4cee9ad963e60182c/aioridwell-0.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "870c6523f143a763f7034857ef0e18c0eb915f2455b345a4e69a11126211a2e3", "md5": "478fe2e1af74d86d123c0a930394e81d", "sha256": "875c8e2952d2f7793a4e44e447053cc1e5efc6f9c4ae8e77ef856e7a6906e40b" }, "downloads": -1, "filename": "aioridwell-0.1.0.tar.gz", "has_sig": false, "md5_digest": "478fe2e1af74d86d123c0a930394e81d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8.0,<4.0.0", "size": 10103, "upload_time": "2021-10-12T20:35:00", "upload_time_iso_8601": "2021-10-12T20:35:00.452665Z", "url": "https://files.pythonhosted.org/packages/87/0c/6523f143a763f7034857ef0e18c0eb915f2455b345a4e69a11126211a2e3/aioridwell-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.1": [ { "comment_text": "", "digests": { "blake2b_256": "024ee9e621007d6a486f38429e6794fe24524886cdc7a1470a5bf2c2ebf14bfd", "md5": "b3fb4aac9b6df9602af4ca74b84a52e3", "sha256": "32447aa2334946e1bbc6ec5ad3eca26828111b7ca80232f8d6cabaa8d41fb738" }, "downloads": -1, "filename": "aioridwell-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "b3fb4aac9b6df9602af4ca74b84a52e3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8.0,<4.0.0", "size": 8553, "upload_time": "2021-10-12T21:12:03", "upload_time_iso_8601": "2021-10-12T21:12:03.405844Z", "url": "https://files.pythonhosted.org/packages/02/4e/e9e621007d6a486f38429e6794fe24524886cdc7a1470a5bf2c2ebf14bfd/aioridwell-0.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "4267a1d1f512381ff096d218ca28a46ca1c20c32ed69d5df3b2e7327f97ce207", "md5": "e7f3967e3efc94799be9a325f57443bd", "sha256": "1476c713d084de0f8f15ae0659e4c56b0928345f95e26ef31ef2a06923daea59" }, "downloads": -1, "filename": "aioridwell-0.1.1.tar.gz", "has_sig": false, "md5_digest": "e7f3967e3efc94799be9a325f57443bd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8.0,<4.0.0", "size": 10101, "upload_time": "2021-10-12T21:12:05", "upload_time_iso_8601": "2021-10-12T21:12:05.078933Z", "url": "https://files.pythonhosted.org/packages/42/67/a1d1f512381ff096d218ca28a46ca1c20c32ed69d5df3b2e7327f97ce207/aioridwell-0.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.2": [ { "comment_text": "", "digests": { "blake2b_256": "a9fabd5afd055df335b0075cdc802af8471af04428f7f58dffc836e1a8325aac", "md5": "ca7987b7a8b5832d8a4a9160222febf0", "sha256": "bd6ba3a44e9f209eff825bcf4671d0257c265d6b5528e28f65fe063dc4f46f4a" }, "downloads": -1, "filename": "aioridwell-0.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "ca7987b7a8b5832d8a4a9160222febf0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8.0,<4.0.0", "size": 8546, "upload_time": "2021-10-13T00:48:15", "upload_time_iso_8601": "2021-10-13T00:48:15.613015Z", "url": "https://files.pythonhosted.org/packages/a9/fa/bd5afd055df335b0075cdc802af8471af04428f7f58dffc836e1a8325aac/aioridwell-0.1.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "2ca69401ff7acf643c667226919e1a5e5a24f1780f4b871fbc3cfbf65cc06a2b", "md5": "1c10d3b83407c8d72634a5de551c312e", "sha256": "1ecd644fb438b6377a23d7152eeb18fc6b548c98a478503342828cf52d537a35" }, "downloads": -1, "filename": "aioridwell-0.1.2.tar.gz", "has_sig": false, "md5_digest": "1c10d3b83407c8d72634a5de551c312e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8.0,<4.0.0", "size": 10073, "upload_time": "2021-10-13T00:48:18", "upload_time_iso_8601": "2021-10-13T00:48:18.080562Z", "url": "https://files.pythonhosted.org/packages/2c/a6/9401ff7acf643c667226919e1a5e5a24f1780f4b871fbc3cfbf65cc06a2b/aioridwell-0.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.3": [ { "comment_text": "", "digests": { "blake2b_256": "df1fcc52507e4a090c81f6e580aa9eaf1469b1eb24fb5163d9f92823df4b975c", "md5": "cf6ffd10ea11795e490b023a5b93e779", "sha256": "9fb072dcaa801441a0d8d5a6a3b8f2ffdb8e3eea25d2c1dda65f706f8bbc3768" }, "downloads": -1, "filename": "aioridwell-0.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "cf6ffd10ea11795e490b023a5b93e779", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8.0,<4.0.0", "size": 8677, "upload_time": "2021-10-13T18:06:39", "upload_time_iso_8601": "2021-10-13T18:06:39.109459Z", "url": "https://files.pythonhosted.org/packages/df/1f/cc52507e4a090c81f6e580aa9eaf1469b1eb24fb5163d9f92823df4b975c/aioridwell-0.1.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "5478c4cea141cdc57af450bf0472323dc1168c27e073527fd6721217921c3d0a", "md5": "47dff53d44fdc3df071accf1343b2831", "sha256": "4b61feac5aa61fc749f10f3a6f775ad20a1345459e9daacc86c0f9a84fde1a30" }, "downloads": -1, "filename": "aioridwell-0.1.3.tar.gz", "has_sig": false, "md5_digest": "47dff53d44fdc3df071accf1343b2831", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8.0,<4.0.0", "size": 10224, "upload_time": "2021-10-13T18:06:40", "upload_time_iso_8601": "2021-10-13T18:06:40.816842Z", "url": "https://files.pythonhosted.org/packages/54/78/c4cea141cdc57af450bf0472323dc1168c27e073527fd6721217921c3d0a/aioridwell-0.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.0": [ { "comment_text": "", "digests": { "blake2b_256": "78c4900fa7a2ff15f89ccb938bffc42b3aee8b6eee8a05955caa6f6a23e239f0", "md5": "4f485db6ac347aa441cce856c428ed7c", "sha256": "cf64e77604d5928418851b80c1c6716ecbbd8b650e017adf15fd3283efb96898" }, "downloads": -1, "filename": "aioridwell-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "4f485db6ac347aa441cce856c428ed7c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8.0,<4.0.0", "size": 8832, "upload_time": "2021-10-13T18:29:51", "upload_time_iso_8601": "2021-10-13T18:29:51.409049Z", "url": "https://files.pythonhosted.org/packages/78/c4/900fa7a2ff15f89ccb938bffc42b3aee8b6eee8a05955caa6f6a23e239f0/aioridwell-0.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "612bcd63845255d3e663ffbd74211a1a36d48ae80624c273a1c5c13a4168b095", "md5": "cd127dec562b7dedc3f0590826beb6dd", "sha256": "fdc13b3430debc68bc4ffb228dbfd93c181d55894547eadb710739d8046dd292" }, "downloads": -1, "filename": "aioridwell-0.2.0.tar.gz", "has_sig": false, "md5_digest": "cd127dec562b7dedc3f0590826beb6dd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8.0,<4.0.0", "size": 10426, "upload_time": "2021-10-13T18:29:53", "upload_time_iso_8601": "2021-10-13T18:29:53.588896Z", "url": "https://files.pythonhosted.org/packages/61/2b/cd63845255d3e663ffbd74211a1a36d48ae80624c273a1c5c13a4168b095/aioridwell-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2021.10.0": [ { "comment_text": "", "digests": { "blake2b_256": "6382d36b04ac8d9415e95abaecfd3a9f9e8b65ff32cf445a19a55ab57d853292", "md5": "b690d156471d91e9f2cd299b491eb58e", "sha256": "5cbe4d6e5ba9bde4cfea95c269dee8f33f3ad6eba959f9524683e5134d493c43" }, "downloads": -1, "filename": "aioridwell-2021.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b690d156471d91e9f2cd299b491eb58e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8.0,<4.0.0", "size": 8871, "upload_time": "2021-10-26T20:00:08", "upload_time_iso_8601": "2021-10-26T20:00:08.706659Z", "url": "https://files.pythonhosted.org/packages/63/82/d36b04ac8d9415e95abaecfd3a9f9e8b65ff32cf445a19a55ab57d853292/aioridwell-2021.10.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "23fa08f3d5bc07baf26ec7fc34afc6427f08d7303c8aea675aeb6150ace24da1", "md5": "ad21b343b353625bbdf2bb69ac0751ee", "sha256": "951c416aff8b86b355629802cf6c6ee056fe7bcf308bb8f95c1e18c03846af38" }, "downloads": -1, "filename": "aioridwell-2021.10.0.tar.gz", "has_sig": false, "md5_digest": "ad21b343b353625bbdf2bb69ac0751ee", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8.0,<4.0.0", "size": 10447, "upload_time": "2021-10-26T20:00:11", "upload_time_iso_8601": "2021-10-26T20:00:11.231251Z", "url": "https://files.pythonhosted.org/packages/23/fa/08f3d5bc07baf26ec7fc34afc6427f08d7303c8aea675aeb6150ace24da1/aioridwell-2021.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2021.12.0": [ { "comment_text": "", "digests": { "blake2b_256": "c1d6f0568d0fe0562096667aa9bb1a99b33aad66741e60552bb298e1070438a5", "md5": "70be5905f72f18cbd069cf00e28d595a", "sha256": "c765834150a7ffd43bb50baabfe4708fb774f259747e8413c4355d3247062e78" }, "downloads": -1, "filename": "aioridwell-2021.12.0-py3-none-any.whl", "has_sig": false, "md5_digest": "70be5905f72f18cbd069cf00e28d595a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8.0,<4.0.0", "size": 10020, "upload_time": "2021-12-18T19:21:57", "upload_time_iso_8601": "2021-12-18T19:21:57.561500Z", "url": "https://files.pythonhosted.org/packages/c1/d6/f0568d0fe0562096667aa9bb1a99b33aad66741e60552bb298e1070438a5/aioridwell-2021.12.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "56f9382812e3f46c90ca578c5b82c680fc99dc0d619ebfdd58e35f6550cb622d", "md5": "9a35b5759875b35e573d0a715a7b1800", "sha256": "91c0c03fef911bc1b44f3d93fe145256021bfbbb1b47fd7dbb615004dc48156e" }, "downloads": -1, "filename": "aioridwell-2021.12.0.tar.gz", "has_sig": false, "md5_digest": "9a35b5759875b35e573d0a715a7b1800", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8.0,<4.0.0", "size": 11224, "upload_time": "2021-12-18T19:21:59", "upload_time_iso_8601": "2021-12-18T19:21:59.857062Z", "url": "https://files.pythonhosted.org/packages/56/f9/382812e3f46c90ca578c5b82c680fc99dc0d619ebfdd58e35f6550cb622d/aioridwell-2021.12.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2021.12.1": [ { "comment_text": "", "digests": { "blake2b_256": "8e675974f6b58b9ed18dec24bcd0bb247e9b373efc99000154cb87516fdc5e65", "md5": "9ddf75566eaca60c9bc19610148f4b58", "sha256": "8374ec0542b4fbc3bfddcd3674c08723019d1a4e3521e5bef531fa82818a994e" }, "downloads": -1, "filename": "aioridwell-2021.12.1-py3-none-any.whl", "has_sig": false, "md5_digest": "9ddf75566eaca60c9bc19610148f4b58", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8.0,<4.0.0", "size": 9997, "upload_time": "2021-12-18T19:30:08", "upload_time_iso_8601": "2021-12-18T19:30:08.741289Z", "url": "https://files.pythonhosted.org/packages/8e/67/5974f6b58b9ed18dec24bcd0bb247e9b373efc99000154cb87516fdc5e65/aioridwell-2021.12.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d2ef1dfc54b0f6f73d46bd89c7eb0103c41afd63ef529ce28436770071ba8f50", "md5": "eb2ca92e2aeff70714a9318e18ed681e", "sha256": "4eb97e4b7d5de4b8459f62e79968f782ae6cce685be3a72bb293320ddec89e9f" }, "downloads": -1, "filename": "aioridwell-2021.12.1.tar.gz", "has_sig": false, "md5_digest": "eb2ca92e2aeff70714a9318e18ed681e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8.0,<4.0.0", "size": 11199, "upload_time": "2021-12-18T19:30:19", "upload_time_iso_8601": "2021-12-18T19:30:19.560949Z", "url": "https://files.pythonhosted.org/packages/d2/ef/1dfc54b0f6f73d46bd89c7eb0103c41afd63ef529ce28436770071ba8f50/aioridwell-2021.12.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2021.12.2": [ { "comment_text": "", "digests": { "blake2b_256": "b59dcf08653936d4e41790d943f0e2ffdc4d1f03e1678fb5b4112d261e145933", "md5": "89bc2d300b66160c0b7ef1f90d886cad", "sha256": "4417f515d359dad02cf9372f42ea5c72c32374af5eac76d3092b72b88f6576d0" }, "downloads": -1, "filename": "aioridwell-2021.12.2-py3-none-any.whl", "has_sig": false, "md5_digest": "89bc2d300b66160c0b7ef1f90d886cad", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8.0,<4.0.0", "size": 10000, "upload_time": "2021-12-18T19:34:37", "upload_time_iso_8601": "2021-12-18T19:34:37.153618Z", "url": "https://files.pythonhosted.org/packages/b5/9d/cf08653936d4e41790d943f0e2ffdc4d1f03e1678fb5b4112d261e145933/aioridwell-2021.12.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "505d73daf3c56c1383da55f5051c86482dbc19bc81fc55b6bce4d892a313e141", "md5": "d8c7b3ba38a604d2dae8893b2001bf84", "sha256": "d1abdcb4391775f026c5f52a9a3292df4dedd8f7e89ec68274240873e38090f2" }, "downloads": -1, "filename": "aioridwell-2021.12.2.tar.gz", "has_sig": false, "md5_digest": "d8c7b3ba38a604d2dae8893b2001bf84", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8.0,<4.0.0", "size": 11209, "upload_time": "2021-12-18T19:34:38", "upload_time_iso_8601": "2021-12-18T19:34:38.484338Z", "url": "https://files.pythonhosted.org/packages/50/5d/73daf3c56c1383da55f5051c86482dbc19bc81fc55b6bce4d892a313e141/aioridwell-2021.12.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2022.10.0": [ { "comment_text": "", "digests": { "blake2b_256": "18006c85b8802817c8133e03cda265e8eaa289a978b5ee30fd1b3fe2ac30b10a", "md5": "4d1b14d9e62525a2fca6a390f75198c1", "sha256": "e2dd936eeff1d48f161db6579b044f8ed06551028e8a3de4f7c700b91aca79e4" }, "downloads": -1, "filename": "aioridwell-2022.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "4d1b14d9e62525a2fca6a390f75198c1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.9.0,<4.0.0", "size": 10532, "upload_time": "2022-10-29T20:10:50", "upload_time_iso_8601": "2022-10-29T20:10:50.869497Z", "url": "https://files.pythonhosted.org/packages/18/00/6c85b8802817c8133e03cda265e8eaa289a978b5ee30fd1b3fe2ac30b10a/aioridwell-2022.10.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "0eaa7a3cc89de759b81330aaf4d8ee80c08ade86297a999ece6c47e7fca89d3c", "md5": "6862f3c970dcf59f451b4691d8e0a3e8", "sha256": "d7400fcf728c2275c3f817d4b35669f30348287d4e5a17d20804f6b7af3ec0b1" }, "downloads": -1, "filename": "aioridwell-2022.10.0.tar.gz", "has_sig": false, "md5_digest": "6862f3c970dcf59f451b4691d8e0a3e8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.9.0,<4.0.0", "size": 12119, "upload_time": "2022-10-29T20:10:52", "upload_time_iso_8601": "2022-10-29T20:10:52.115324Z", "url": "https://files.pythonhosted.org/packages/0e/aa/7a3cc89de759b81330aaf4d8ee80c08ade86297a999ece6c47e7fca89d3c/aioridwell-2022.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2022.11.0": [ { "comment_text": "", "digests": { "blake2b_256": "317e726be949905b875cfdf07e3d1b6c488cfe37ef2418938c960c75a81efe34", "md5": "4b55911910032adc69ad47b0d1f46133", "sha256": "e05955949aee6919ca2adf08346e2e3e71ba28745129738fef7469cd672baa15" }, "downloads": -1, "filename": "aioridwell-2022.11.0-py3-none-any.whl", "has_sig": false, "md5_digest": "4b55911910032adc69ad47b0d1f46133", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.9.0,<4.0.0", "size": 10548, "upload_time": "2022-11-10T19:56:48", "upload_time_iso_8601": "2022-11-10T19:56:48.165624Z", "url": "https://files.pythonhosted.org/packages/31/7e/726be949905b875cfdf07e3d1b6c488cfe37ef2418938c960c75a81efe34/aioridwell-2022.11.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "6f9e9dce45b537d04fba547f33eada9930ed19515eeda7c658876fd4de383189", "md5": "97191b9bc359f5566e3a803b674bfa30", "sha256": "ce701a05cf7ab6e31b41857c952add15f71ea290992df656b92c9f2443eeca3f" }, "downloads": -1, "filename": "aioridwell-2022.11.0.tar.gz", "has_sig": false, "md5_digest": "97191b9bc359f5566e3a803b674bfa30", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.9.0,<4.0.0", "size": 12129, "upload_time": "2022-11-10T19:56:52", "upload_time_iso_8601": "2022-11-10T19:56:52.038611Z", "url": "https://files.pythonhosted.org/packages/6f/9e/9dce45b537d04fba547f33eada9930ed19515eeda7c658876fd4de383189/aioridwell-2022.11.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2022.3.0": [ { "comment_text": "", "digests": { "blake2b_256": "79d75a0a4b802efb8a958d472b17206a93657e02c4519f62b47359627737c2cf", "md5": "b9b567f20954b0413ebba33e3eb81d04", "sha256": "df143b3e8b8e6b4ff76e7003dc9d44cdd76c048cbcbc23331888ce2064db9627" }, "downloads": -1, "filename": "aioridwell-2022.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b9b567f20954b0413ebba33e3eb81d04", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8.0,<4.0.0", "size": 9988, "upload_time": "2022-03-20T15:00:26", "upload_time_iso_8601": "2022-03-20T15:00:26.649347Z", "url": "https://files.pythonhosted.org/packages/79/d7/5a0a4b802efb8a958d472b17206a93657e02c4519f62b47359627737c2cf/aioridwell-2022.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "64fc3879d66e249699a550ccc58a625af9fd35a825725dcdb20a67c58c7c17f6", "md5": "60a08aa32541493db4bf7c181b2df86f", "sha256": "10773ff3b0bea12abeb8b356dafc230383f9887bfd3134dbba5e21a5c9f067b0" }, "downloads": -1, "filename": "aioridwell-2022.3.0.tar.gz", "has_sig": false, "md5_digest": "60a08aa32541493db4bf7c181b2df86f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8.0,<4.0.0", "size": 11204, "upload_time": "2022-03-20T15:00:28", "upload_time_iso_8601": "2022-03-20T15:00:28.208405Z", "url": "https://files.pythonhosted.org/packages/64/fc/3879d66e249699a550ccc58a625af9fd35a825725dcdb20a67c58c7c17f6/aioridwell-2022.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2023.1.0": [ { "comment_text": "", "digests": { "blake2b_256": "d14185587a528608ca9b47d6454cd9f37480e0a2a0e44741661b4a2554bb03fc", "md5": "d7d4195c22fd91fb084f4bc425deff13", "sha256": "810e14d7a98183b99e2cfd4aaac167f495974f6d0e25a67b83641e05a6b368cd" }, "downloads": -1, "filename": "aioridwell-2023.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d7d4195c22fd91fb084f4bc425deff13", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.9.0,<4.0.0", "size": 10765, "upload_time": "2023-01-09T04:21:17", "upload_time_iso_8601": "2023-01-09T04:21:17.204121Z", "url": "https://files.pythonhosted.org/packages/d1/41/85587a528608ca9b47d6454cd9f37480e0a2a0e44741661b4a2554bb03fc/aioridwell-2023.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "76f251f9ca65789f959b7da5fb3181cc287e4a75531f297a36a1b4dd3d78118a", "md5": "4e6637a1bae0a51564116693fc58051b", "sha256": "5bde42ebd227e3499fdbe062e4a8509c048d7c38c5940ae705994a221788a5c4" }, "downloads": -1, "filename": "aioridwell-2023.1.0.tar.gz", "has_sig": false, "md5_digest": "4e6637a1bae0a51564116693fc58051b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.9.0,<4.0.0", "size": 12569, "upload_time": "2023-01-09T04:21:18", "upload_time_iso_8601": "2023-01-09T04:21:18.429554Z", "url": "https://files.pythonhosted.org/packages/76/f2/51f9ca65789f959b7da5fb3181cc287e4a75531f297a36a1b4dd3d78118a/aioridwell-2023.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2023.10.0": [ { "comment_text": "", "digests": { "blake2b_256": "b72e2dea3514021c3171a3b73f40648d2e662ae7f20409fcc80ec86f3ed6cb6d", "md5": "5d84c182817e12d2de24f0c036a2db1f", "sha256": "7c86b4644dd1211dfb3741d605a4ffeb531b0d7ae62fa5c7a8df9e01b330555e" }, "downloads": -1, "filename": "aioridwell-2023.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "5d84c182817e12d2de24f0c036a2db1f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.10,<=3.12", "size": 10833, "upload_time": "2023-10-11T16:57:50", "upload_time_iso_8601": "2023-10-11T16:57:50.701235Z", "url": "https://files.pythonhosted.org/packages/b7/2e/2dea3514021c3171a3b73f40648d2e662ae7f20409fcc80ec86f3ed6cb6d/aioridwell-2023.10.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "783dcaa0076ffd5cbb1f5dfd2252b2f6412a08d823c6ba59cbe632af1bc6d502", "md5": "6301442e1e4a0e4724905e6e092832f8", "sha256": "ca1022ff9a67fa8f58ef9295132a8b46027b6e13d15ab1bc6708496098a474d9" }, "downloads": -1, "filename": "aioridwell-2023.10.0.tar.gz", "has_sig": false, "md5_digest": "6301442e1e4a0e4724905e6e092832f8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.10,<=3.12", "size": 11727, "upload_time": "2023-10-11T16:57:51", "upload_time_iso_8601": "2023-10-11T16:57:51.952848Z", "url": "https://files.pythonhosted.org/packages/78/3d/caa0076ffd5cbb1f5dfd2252b2f6412a08d823c6ba59cbe632af1bc6d502/aioridwell-2023.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2023.12.0": [ { "comment_text": "", "digests": { "blake2b_256": "c3cf00f1005f11f1b920aee88224d436cf9c85d493011340a8d2c74a1f807144", "md5": "b5f2ba5b2981903de616184e39c6fbb4", "sha256": "84502371cef993cec41071918272e9d7eeaa2cf3e5b5e043388e414f7bcaf3dc" }, "downloads": -1, "filename": "aioridwell-2023.12.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b5f2ba5b2981903de616184e39c6fbb4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.10,<4.0", "size": 10830, "upload_time": "2023-12-18T02:33:21", "upload_time_iso_8601": "2023-12-18T02:33:21.823095Z", "url": "https://files.pythonhosted.org/packages/c3/cf/00f1005f11f1b920aee88224d436cf9c85d493011340a8d2c74a1f807144/aioridwell-2023.12.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "1a59fe9295b93bd47c3ad9be07af4ebfbf0d289df0d54721c3172d06c99a034b", "md5": "ad8824fcd424c7e9c7dd864a873d1283", "sha256": "edf507beee41e801e93a40fe0ba34291199e7b310fee804c634722a7769a4212" }, "downloads": -1, "filename": "aioridwell-2023.12.0.tar.gz", "has_sig": false, "md5_digest": "ad8824fcd424c7e9c7dd864a873d1283", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.10,<4.0", "size": 11719, "upload_time": "2023-12-18T02:33:23", "upload_time_iso_8601": "2023-12-18T02:33:23.523799Z", "url": "https://files.pythonhosted.org/packages/1a/59/fe9295b93bd47c3ad9be07af4ebfbf0d289df0d54721c3172d06c99a034b/aioridwell-2023.12.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2023.7.0": [ { "comment_text": "", "digests": { "blake2b_256": "b449030020d8091ea22e3f80a92aefca6c53f4c31be1af73050f7a7a08054e77", "md5": "bf2f55a3f301ecfd893616357ad4c3a3", "sha256": "35e8a2df33eea9d3578130354aa9d532506ee6289b9bcf802456fa95a3333d77" }, "downloads": -1, "filename": "aioridwell-2023.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "bf2f55a3f301ecfd893616357ad4c3a3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.9.0,<4.0.0", "size": 10786, "upload_time": "2023-07-11T15:19:37", "upload_time_iso_8601": "2023-07-11T15:19:37.571169Z", "url": "https://files.pythonhosted.org/packages/b4/49/030020d8091ea22e3f80a92aefca6c53f4c31be1af73050f7a7a08054e77/aioridwell-2023.7.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "66eb7c1c97c41704ba9ed9e335369d514fca72d68cb6f544033801d70072a34a", "md5": "aefe76426ad70b61806a327c1f825123", "sha256": "4f997fe7f88f7790753857aeec20c3c59eb2d15fd94e5b543ee0a01926708dee" }, "downloads": -1, "filename": "aioridwell-2023.7.0.tar.gz", "has_sig": false, "md5_digest": "aefe76426ad70b61806a327c1f825123", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.9.0,<4.0.0", "size": 11674, "upload_time": "2023-07-11T15:19:38", "upload_time_iso_8601": "2023-07-11T15:19:38.949356Z", "url": "https://files.pythonhosted.org/packages/66/eb/7c1c97c41704ba9ed9e335369d514fca72d68cb6f544033801d70072a34a/aioridwell-2023.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2023.8.0": [ { "comment_text": "", "digests": { "blake2b_256": "c2325f997ccd2d3c37f565e5cf5cd963903be1415415ba5cf2d040a636996162", "md5": "8866057ae89de665b5fde1abfa6f970c", "sha256": "141f0ca49d9888a857317ba32f9989b84aff7c27236a57d6fc86c3c4929d829f" }, "downloads": -1, "filename": "aioridwell-2023.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8866057ae89de665b5fde1abfa6f970c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.9.0,<4.0.0", "size": 10814, "upload_time": "2023-08-17T15:43:29", "upload_time_iso_8601": "2023-08-17T15:43:29.152078Z", "url": "https://files.pythonhosted.org/packages/c2/32/5f997ccd2d3c37f565e5cf5cd963903be1415415ba5cf2d040a636996162/aioridwell-2023.8.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "7dd184163a05e5f5d774364322742e8a814baf5cd2397c624d48a6af14dac0f3", "md5": "5b63a49f397a0a071cfe27297cc2868d", "sha256": "b6e164fa8ac1db17dd92b41cfcd4d6ab3f23261e1e1cf73ffec6af1fd7a9a2f1" }, "downloads": -1, "filename": "aioridwell-2023.8.0.tar.gz", "has_sig": false, "md5_digest": "5b63a49f397a0a071cfe27297cc2868d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.9.0,<4.0.0", "size": 11745, "upload_time": "2023-08-17T15:43:30", "upload_time_iso_8601": "2023-08-17T15:43:30.143650Z", "url": "https://files.pythonhosted.org/packages/7d/d1/84163a05e5f5d774364322742e8a814baf5cd2397c624d48a6af14dac0f3/aioridwell-2023.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2024.1.0": [ { "comment_text": "", "digests": { "blake2b_256": "73da7865156ec57db862f3ea7766ec947f7e6a3fdc7004d5e6707028a99e2937", "md5": "c6fcfae2b5710bc8224db745d3684177", "sha256": "4dc04d4dcbc671357b7243a66033477af2b032891ad4a14856c03333da2fcb0a" }, "downloads": -1, "filename": "aioridwell-2024.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c6fcfae2b5710bc8224db745d3684177", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.10,<4.0", "size": 11014, "upload_time": "2024-01-15T21:27:49", "upload_time_iso_8601": "2024-01-15T21:27:49.764051Z", "url": "https://files.pythonhosted.org/packages/73/da/7865156ec57db862f3ea7766ec947f7e6a3fdc7004d5e6707028a99e2937/aioridwell-2024.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "6f85bdc831718d4d8022b0728ad5d44014a41d6004495d9b3eb9ac295cc45775", "md5": "dc6721721bc2fdeefdecebf8ca3bdd9c", "sha256": "3541770330eb17e5d5e593d41f14067da543842fa58687efa065891a822a3017" }, "downloads": -1, "filename": "aioridwell-2024.1.0.tar.gz", "has_sig": false, "md5_digest": "dc6721721bc2fdeefdecebf8ca3bdd9c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.10,<4.0", "size": 11905, "upload_time": "2024-01-15T21:27:51", "upload_time_iso_8601": "2024-01-15T21:27:51.391107Z", "url": "https://files.pythonhosted.org/packages/6f/85/bdc831718d4d8022b0728ad5d44014a41d6004495d9b3eb9ac295cc45775/aioridwell-2024.1.0.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "blake2b_256": "73da7865156ec57db862f3ea7766ec947f7e6a3fdc7004d5e6707028a99e2937", "md5": "c6fcfae2b5710bc8224db745d3684177", "sha256": "4dc04d4dcbc671357b7243a66033477af2b032891ad4a14856c03333da2fcb0a" }, "downloads": -1, "filename": "aioridwell-2024.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c6fcfae2b5710bc8224db745d3684177", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.10,<4.0", "size": 11014, "upload_time": "2024-01-15T21:27:49", "upload_time_iso_8601": "2024-01-15T21:27:49.764051Z", "url": "https://files.pythonhosted.org/packages/73/da/7865156ec57db862f3ea7766ec947f7e6a3fdc7004d5e6707028a99e2937/aioridwell-2024.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "6f85bdc831718d4d8022b0728ad5d44014a41d6004495d9b3eb9ac295cc45775", "md5": "dc6721721bc2fdeefdecebf8ca3bdd9c", "sha256": "3541770330eb17e5d5e593d41f14067da543842fa58687efa065891a822a3017" }, "downloads": -1, "filename": "aioridwell-2024.1.0.tar.gz", "has_sig": false, "md5_digest": "dc6721721bc2fdeefdecebf8ca3bdd9c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.10,<4.0", "size": 11905, "upload_time": "2024-01-15T21:27:51", "upload_time_iso_8601": "2024-01-15T21:27:51.391107Z", "url": "https://files.pythonhosted.org/packages/6f/85/bdc831718d4d8022b0728ad5d44014a41d6004495d9b3eb9ac295cc45775/aioridwell-2024.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }