{ "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": "# \ud83d\udd16 aiolinkding: a Python3, async library to the linkding REST API\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`aiolinkding` is a Python3, async library that interfaces with [linkding][linkding]\ninstances. It is intended to be a reasonably light wrapper around the linkding API\n(meaning that instead of drowning the user in custom objects/etc., it focuses on\nreturning JSON straight from the API).\n\n- [Installation](#installation)\n- [Python Versions](#python-versions)\n- [Usage](#usage)\n - [Creating a Client](#creating-a-client)\n - [Working with Bookmarks](#working-with-bookmarks)\n - [Getting All Bookmarks](#getting-all-bookmarks)\n - [Getting Archived Bookmarks](#getting-archived-bookmarks)\n - [Getting a Single Bookmark](#getting-a-single-bookmark-by-id)\n - [Creating a New Bookmark](#creating-a-new-bookmark)\n - [Updating an Existing Bookmark by ID](#updating-an-existing-bookmark-by-id)\n - [Archiving/Unarchiving a Bookmark](#archivingunarchiving-a-bookmark)\n - [Deleting a Bookmark](#deleting-a-bookmark)\n - [Working with Tags](#working-with-tags)\n - [Getting All Tags](#getting-all-tags)\n - [Getting a Single Tag](#getting-a-single-tag-by-id)\n - [Creating a New Tag](#creating-a-new-Tag)\n - [Working with User Data](#working-with-user-data)\n - [Getting Profile Info](#getting-profile-info)\n - [Connection Pooling](#connection-pooling)\n- [Contributing](#contributing)\n\n# Installation\n\n```bash\npip install aiolinkding\n```\n\n# Python Versions\n\n`aiolinkding` is currently supported on:\n\n- Python 3.10\n- Python 3.11\n- Python 3.12\n\n# Usage\n\n## Creating a Client\n\nIt's easy to create an API client for a linkding instance. All you need are two\nparameters:\n\n1. A URL to a linkding instance\n2. A linkding API token\n\n```python\nimport asyncio\n\nfrom aiolinkding import async_get_client\n\n\nasync def main() -> None:\n \"\"\"Use aiolinkding for fun and profit.\"\"\"\n client = await async_get_client(\"http://127.0.0.1:8000\", \"token_abcde12345\")\n\n\nasyncio.run(main())\n```\n\n## Working with Bookmarks\n\n### Getting All Bookmarks\n\n```python\nimport asyncio\n\nfrom aiolinkding import async_get_client\n\n\nasync def main() -> None:\n \"\"\"Use aiolinkding for fun and profit.\"\"\"\n client = await async_get_client(\"http://127.0.0.1:8000\", \"token_abcde12345\")\n\n # Get all bookmarks:\n bookmarks = await client.bookmarks.async_get_all()\n # >>> { \"count\": 100, \"next\": null, \"previous\": null, \"results\": [...] }\n\n\nasyncio.run(main())\n```\n\n`client.bookmarks.async_get_all()` takes three optional parameters:\n\n- `query`: a string query to filter the returned bookmarks\n- `limit`: the maximum number of results that should be returned\n- `offset`: the index from which to return results (e.g., `5` starts at the fifth bookmark)\n\n### Getting Archived Bookmarks\n\n```python\nimport asyncio\n\nfrom aiolinkding import async_get_client\n\n\nasync def main() -> None:\n \"\"\"Use aiolinkding for fun and profit.\"\"\"\n client = await async_get_client(\"http://127.0.0.1:8000\", \"token_abcde12345\")\n\n # Get all archived bookmarks:\n bookmarks = await client.bookmarks.async_get_archived()\n # >>> { \"count\": 100, \"next\": null, \"previous\": null, \"results\": [...] }\n\n\nasyncio.run(main())\n```\n\n`client.bookmarks.async_get_archived()` takes three optional parameters:\n\n- `query`: a string query to filter the returned bookmarks\n- `limit`: the maximum number of results that should be returned\n- `offset`: the index from which to return results (e.g., `5` starts at the fifth bookmark)\n\n### Getting a Single Bookmark by ID\n\n```python\nimport asyncio\n\nfrom aiolinkding import async_get_client\n\n\nasync def main() -> None:\n \"\"\"Use aiolinkding for fun and profit.\"\"\"\n client = await async_get_client(\"http://127.0.0.1:8000\", \"token_abcde12345\")\n\n # Get a single bookmark:\n bookmark = await client.bookmarks.async_get_single(37)\n # >>> { \"id\": 37, \"url\": \"https://example.com\", \"title\": \"Example title\", ... }\n\n\nasyncio.run(main())\n```\n\n### Creating a New Bookmark\n\n```python\nimport asyncio\n\nfrom aiolinkding import async_get_client\n\n\nasync def main() -> None:\n \"\"\"Use aiolinkding for fun and profit.\"\"\"\n client = await async_get_client(\"http://127.0.0.1:8000\", \"token_abcde12345\")\n\n # Create a new bookmark:\n created_bookmark = await client.bookmarks.async_create(\n \"https://example.com\",\n title=\"Example title\",\n description=\"Example description\",\n tag_names=[\n \"tag1\",\n \"tag2\",\n ],\n )\n # >>> { \"id\": 37, \"url\": \"https://example.com\", \"title\": \"Example title\", ... }\n\n\nasyncio.run(main())\n```\n\n`client.bookmarks.async_create()` takes four optional parameters:\n\n- `title`: the bookmark's title\n- `description`: the bookmark's description\n- `notes`: Markdown notes to add to the bookmark\n- `tag_names`: the tags to assign to the bookmark (represented as a list of strings)\n- `is_archived`: whether the newly-created bookmark should automatically be archived\n- `unread`: whether the newly-created bookmark should be marked as unread\n- `shared`: whether the newly-created bookmark should be shareable with other linkding users\n\n### Updating an Existing Bookmark by ID\n\n```python\nimport asyncio\n\nfrom aiolinkding import async_get_client\n\n\nasync def main() -> None:\n \"\"\"Use aiolinkding for fun and profit.\"\"\"\n client = await async_get_client(\"http://127.0.0.1:8000\", \"token_abcde12345\")\n\n # Update an existing bookmark:\n updated_bookmark = await client.bookmarks.async_update(\n 37,\n url=\"https://different-example.com\",\n title=\"Different example title\",\n description=\"Different example description\",\n tag_names=[\n \"tag1\",\n \"tag2\",\n ],\n )\n # >>> { \"id\": 37, \"url\": \"https://different-example.com\", ... }\n\n\nasyncio.run(main())\n```\n\n`client.bookmarks.async_update()` takes four optional parameters (inclusion of any parameter\nwill change that value for the existing bookmark):\n\n- `url`: the bookmark's URL\n- `title`: the bookmark's title\n- `description`: the bookmark's description\n- `notes`: Markdown notes to add to the bookmark\n- `tag_names`: the tags to assign to the bookmark (represented as a list of strings)\n- `unread`: whether the bookmark should be marked as unread\n- `shared`: whether the bookmark should be shareable with other linkding users\n\n### Archiving/Unarchiving a Bookmark\n\n```python\nimport asyncio\n\nfrom aiolinkding import async_get_client\n\n\nasync def main() -> None:\n \"\"\"Use aiolinkding for fun and profit.\"\"\"\n client = await async_get_client(\"http://127.0.0.1:8000\", \"token_abcde12345\")\n\n # Archive a bookmark by ID:\n await client.bookmarks.async_archive(37)\n\n # ...and unarchive it:\n await client.bookmarks.async_unarchive(37)\n\n\nasyncio.run(main())\n```\n\n### Deleting a Bookmark\n\n```python\nimport asyncio\n\nfrom aiolinkding import async_get_client\n\n\nasync def main() -> None:\n \"\"\"Use aiolinkding for fun and profit.\"\"\"\n client = await async_get_client(\"http://127.0.0.1:8000\", \"token_abcde12345\")\n\n # Delete a bookmark by ID:\n await client.bookmarks.async_delete(37)\n\n\nasyncio.run(main())\n```\n\n## Working with Tags\n\n### Getting All Tags\n\n```python\nimport asyncio\n\nfrom aiolinkding import async_get_client\n\n\nasync def main() -> None:\n \"\"\"Use aiolinkding for fun and profit.\"\"\"\n client = await async_get_client(\"http://127.0.0.1:8000\", \"token_abcde12345\")\n\n # Get all tags:\n tags = await client.tags.async_get_all()\n # >>> { \"count\": 100, \"next\": null, \"previous\": null, \"results\": [...] }\n\n\nasyncio.run(main())\n```\n\n`client.tags.async_get_all()` takes two optional parameters:\n\n- `limit`: the maximum number of results that should be returned\n- `offset`: the index from which to return results (e.g., `5` starts at the fifth bookmark)\n\n### Getting a Single Tag by ID\n\n```python\nimport asyncio\n\nfrom aiolinkding import async_get_client\n\n\nasync def main() -> None:\n \"\"\"Use aiolinkding for fun and profit.\"\"\"\n client = await async_get_client(\"http://127.0.0.1:8000\", \"token_abcde12345\")\n\n # Get a single tag:\n tag = await client.tags.async_get_single(22)\n # >>> { \"id\": 22, \"name\": \"example-tag\", ... }\n\n\nasyncio.run(main())\n```\n\n### Creating a New Tag\n\n```python\nimport asyncio\n\nfrom aiolinkding import async_get_client\n\n\nasync def main() -> None:\n \"\"\"Use aiolinkding for fun and profit.\"\"\"\n client = await async_get_client(\"http://127.0.0.1:8000\", \"token_abcde12345\")\n\n # Create a new tag:\n created_tag = await client.tags.async_create(\"example-tag\")\n # >>> { \"id\": 22, \"name\": \"example-tag\", ... }\n\n\nasyncio.run(main())\n```\n\n## Working with User Data\n\n### Getting Profile Info\n\n```python\nimport asyncio\n\nfrom aiolinkding import async_get_client\n\n\nasync def main() -> None:\n \"\"\"Use aiolinkding for fun and profit.\"\"\"\n client = await async_get_client(\"http://127.0.0.1:8000\", \"token_abcde12345\")\n\n # Get all tags:\n tags = await client.user.async_get_profile()\n # >>> { \"theme\": \"auto\", \"bookmark_date_display\": \"relative\", ... }\n\n\nasyncio.run(main())\n```\n\n## Connection Pooling\n\nBy default, the library creates a new connection to linkding with each coroutine. If you\nare calling a large number of coroutines (or merely want to squeeze out every second of\nruntime savings possible), an [`aiohttp`][aiohttp] `ClientSession` can be used for\nconnection pooling:\n\n```python\nimport asyncio\n\nfrom aiohttp import async_get_clientSession\nfrom aiolinkding import async_get_client\n\n\nasync def main() -> None:\n \"\"\"Use aiolinkding for fun and profit.\"\"\"\n async with ClientSession() as session:\n client = await async_get_client(\n \"http://127.0.0.1:8000\", \"token_abcde12345\", session=session\n )\n\n # Get to work...\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 aiolinkding tests`\n9. Update `README.md` with any new documentation.\n10. Submit a pull request!\n\n[aiohttp]: https://github.com/aio-libs/aiohttp\n[linkding]: https://github.com/sissbruecker/linkding\n[ci-badge]: https://github.com/bachya/aiolinkding/workflows/CI/badge.svg\n[ci]: https://github.com/bachya/aiolinkding/actions\n[codecov-badge]: https://codecov.io/gh/bachya/aiolinkding/branch/dev/graph/badge.svg\n[codecov]: https://codecov.io/gh/bachya/aiolinkding\n[contributors]: https://github.com/bachya/aiolinkding/graphs/contributors\n[fork]: https://github.com/bachya/aiolinkding/fork\n[issues]: https://github.com/bachya/aiolinkding/issues\n[license-badge]: https://img.shields.io/pypi/l/aiolinkding.svg\n[license]: https://github.com/bachya/aiolinkding/blob/main/LICENSE\n[maintainability-badge]: https://api.codeclimate.com/v1/badges/189379773edd4035a612/maintainability\n[maintainability]: https://codeclimate.com/github/bachya/aiolinkding/maintainability\n[new-issue]: https://github.com/bachya/aiolinkding/issues/new\n[new-issue]: https://github.com/bachya/aiolinkding/issues/new\n[pypi-badge]: https://img.shields.io/pypi/v/aiolinkding.svg\n[pypi]: https://pypi.python.org/pypi/aiolinkding\n[version-badge]: https://img.shields.io/pypi/pyversions/aiolinkding.svg\n[version]: https://pypi.python.org/pypi/aiolinkding\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/aiolinkding", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "aiolinkding", "package_url": "https://pypi.org/project/aiolinkding/", "platform": null, "project_url": "https://pypi.org/project/aiolinkding/", "project_urls": { "Bug Tracker": "https://github.com/bachya/aiolinkding/issues", "Changelog": "https://github.com/bachya/aiolinkding/releases", "Homepage": "https://github.com/bachya/aiolinkding", "Repository": "https://github.com/bachya/aiolinkding" }, "release_url": "https://pypi.org/project/aiolinkding/2023.12.0/", "requires_dist": [ "aiohttp (>=3.9.0)", "certifi (>=2023.07.22)", "frozenlist (>=1.4.0,<2.0.0)", "packaging (>=23.0,<24.0)", "yarl (>=1.9.2)" ], "requires_python": ">=3.10,<4.0", "summary": "A Python3, async interface to the linkding REST API", "version": "2023.12.0", "yanked": false, "yanked_reason": null }, "last_serial": 21102228, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "blake2b_256": "27328cc6222dbb690586c9554a5f50f5019d05758a39285e875e843203d9dece", "md5": "c61aaecf34fc9fd7d03d60f6160f742c", "sha256": "37a3e99cd2aa16422b965de133685b7e8ab620861f52b6687f3350d0d21e236e" }, "downloads": -1, "filename": "aiolinkding-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c61aaecf34fc9fd7d03d60f6160f742c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8.0,<4.0.0", "size": 5515, "upload_time": "2022-05-17T22:05:35", "upload_time_iso_8601": "2022-05-17T22:05:35.626906Z", "url": "https://files.pythonhosted.org/packages/27/32/8cc6222dbb690586c9554a5f50f5019d05758a39285e875e843203d9dece/aiolinkding-0.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "90840e5efa872a62a164c4c5d625547046c04017fc197bd7fdea3d7e1c856ab8", "md5": "9c9ffbdbd051b81309a8ccba80c24439", "sha256": "e4ab4aae619b913333f6e4e70775363a1e6948ac3cc9f16dd2886419e07d98c3" }, "downloads": -1, "filename": "aiolinkding-0.0.1.tar.gz", "has_sig": false, "md5_digest": "9c9ffbdbd051b81309a8ccba80c24439", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8.0,<4.0.0", "size": 5650, "upload_time": "2022-05-17T22:05:38", "upload_time_iso_8601": "2022-05-17T22:05:38.734313Z", "url": "https://files.pythonhosted.org/packages/90/84/0e5efa872a62a164c4c5d625547046c04017fc197bd7fdea3d7e1c856ab8/aiolinkding-0.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2022.10.0": [ { "comment_text": "", "digests": { "blake2b_256": "12b4677fef1f63dcacbb225d492507240b229a46aea373e136caf47f393e003d", "md5": "3aa0bb37aca0be305ec71ca29d0b6c48", "sha256": "a78154d9f11a52feb52e5988fa850c0659ec34e3a5a7fc579b9cc751a3814f49" }, "downloads": -1, "filename": "aiolinkding-2022.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "3aa0bb37aca0be305ec71ca29d0b6c48", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.9.0", "size": 8482, "upload_time": "2022-10-25T18:35:11", "upload_time_iso_8601": "2022-10-25T18:35:11.664672Z", "url": "https://files.pythonhosted.org/packages/12/b4/677fef1f63dcacbb225d492507240b229a46aea373e136caf47f393e003d/aiolinkding-2022.10.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d616ed48dc24e5747159a5d5ca20daea299cf9ab858b0647311d8cd62416e17d", "md5": "c695bd9c1b905b94034aee6c5cf29eca", "sha256": "8a13204fb606eb697f73570cebd55346bc60eb6bd880293cfb8d1c7b3b3c03eb" }, "downloads": -1, "filename": "aiolinkding-2022.10.0.tar.gz", "has_sig": false, "md5_digest": "c695bd9c1b905b94034aee6c5cf29eca", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.9.0", "size": 10612, "upload_time": "2022-10-25T18:35:13", "upload_time_iso_8601": "2022-10-25T18:35:13.388163Z", "url": "https://files.pythonhosted.org/packages/d6/16/ed48dc24e5747159a5d5ca20daea299cf9ab858b0647311d8cd62416e17d/aiolinkding-2022.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2022.10.1": [ { "comment_text": "", "digests": { "blake2b_256": "d0a0950876d80648da471cf58fe9ffc0a72e51c8dccf7fc2f727e83ea2fc2b98", "md5": "2f50deeb37560e74e2d9040b07846402", "sha256": "5b7c76d77e41404d1c4a346890a9d4064ae70c99690d74c379283b30b1d777a9" }, "downloads": -1, "filename": "aiolinkding-2022.10.1-py3-none-any.whl", "has_sig": false, "md5_digest": "2f50deeb37560e74e2d9040b07846402", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.9.0,<4.0.0", "size": 9108, "upload_time": "2022-10-29T18:50:50", "upload_time_iso_8601": "2022-10-29T18:50:50.082255Z", "url": "https://files.pythonhosted.org/packages/d0/a0/950876d80648da471cf58fe9ffc0a72e51c8dccf7fc2f727e83ea2fc2b98/aiolinkding-2022.10.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "115a97ed7b7d60b6f08c68101c1c94c4fa0b2654649c21a8541c0ade63dab76b", "md5": "3b7644277436acaf633cf9642659b29b", "sha256": "3eba14e3acc7aa2d76c5c506e684efce70c6cb61592ca92eb99d722e2418dfa8" }, "downloads": -1, "filename": "aiolinkding-2022.10.1.tar.gz", "has_sig": false, "md5_digest": "3b7644277436acaf633cf9642659b29b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.9.0,<4.0.0", "size": 11215, "upload_time": "2022-10-29T18:50:51", "upload_time_iso_8601": "2022-10-29T18:50:51.573994Z", "url": "https://files.pythonhosted.org/packages/11/5a/97ed7b7d60b6f08c68101c1c94c4fa0b2654649c21a8541c0ade63dab76b/aiolinkding-2022.10.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2022.5.0": [ { "comment_text": "", "digests": { "blake2b_256": "19ac7b8da3aabcea87da996b415fcc6db0ddf176cc1ec571bdab63d969773ae2", "md5": "e8dcfa9429bc12b923113ac2dd775c4b", "sha256": "e5f21f0695b43f511afab88abcd5fd470afa7866c5a8c85e1e0d2b5ce9dbe6eb" }, "downloads": -1, "filename": "aiolinkding-2022.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e8dcfa9429bc12b923113ac2dd775c4b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8.0,<4.0.0", "size": 7937, "upload_time": "2022-05-18T18:19:06", "upload_time_iso_8601": "2022-05-18T18:19:06.750989Z", "url": "https://files.pythonhosted.org/packages/19/ac/7b8da3aabcea87da996b415fcc6db0ddf176cc1ec571bdab63d969773ae2/aiolinkding-2022.5.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d657eff787bc81fd9cc9e13bfce7f03c4f24ffaf6f9619d69527850967c30916", "md5": "8ca271dcf0cc5b076cc57f3f9f17685f", "sha256": "06e441a1fb94810d7f529a09093b0e746af1fc3f3175b39af37ef7e833a486e9" }, "downloads": -1, "filename": "aiolinkding-2022.5.0.tar.gz", "has_sig": false, "md5_digest": "8ca271dcf0cc5b076cc57f3f9f17685f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8.0,<4.0.0", "size": 9865, "upload_time": "2022-05-18T18:19:07", "upload_time_iso_8601": "2022-05-18T18:19:07.985181Z", "url": "https://files.pythonhosted.org/packages/d6/57/eff787bc81fd9cc9e13bfce7f03c4f24ffaf6f9619d69527850967c30916/aiolinkding-2022.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2022.5.1": [ { "comment_text": "", "digests": { "blake2b_256": "7e1ff7ed5ca24b9ce2da92ce2be66075d0832ef968b25988d81636b3b3681e22", "md5": "807491297f7bb166e0fb90964ca723e9", "sha256": "81725f5b9c421046bc8353f79ada0367b8224290ccd71215e41a69c30653202e" }, "downloads": -1, "filename": "aiolinkding-2022.5.1-py3-none-any.whl", "has_sig": false, "md5_digest": "807491297f7bb166e0fb90964ca723e9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8.0,<4.0.0", "size": 7942, "upload_time": "2022-05-20T19:41:04", "upload_time_iso_8601": "2022-05-20T19:41:04.226727Z", "url": "https://files.pythonhosted.org/packages/7e/1f/f7ed5ca24b9ce2da92ce2be66075d0832ef968b25988d81636b3b3681e22/aiolinkding-2022.5.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "20d61611f372e58bdfcf7abb5a1fc19a6a502128bebc091a9b7ab3cd592b993f", "md5": "757109867bc8a52e683913e2228b8424", "sha256": "bebe561c908ed9f445cb8db3873c649b63f61d09a0ff771aece2ef1f7a44e2e3" }, "downloads": -1, "filename": "aiolinkding-2022.5.1.tar.gz", "has_sig": false, "md5_digest": "757109867bc8a52e683913e2228b8424", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8.0,<4.0.0", "size": 9867, "upload_time": "2022-05-20T19:41:05", "upload_time_iso_8601": "2022-05-20T19:41:05.864392Z", "url": "https://files.pythonhosted.org/packages/20/d6/1611f372e58bdfcf7abb5a1fc19a6a502128bebc091a9b7ab3cd592b993f/aiolinkding-2022.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2022.5.2": [ { "comment_text": "", "digests": { "blake2b_256": "9301df03eaf58bebff493b188a0635ce3e8c202d1b20ec9d985d9aca4becf560", "md5": "a873754bf59ab559532cc58d55056e9b", "sha256": "b29d20f7ab54124619e0b45f3d383ad706e0e2a07766926dc399920174e68f54" }, "downloads": -1, "filename": "aiolinkding-2022.5.2-py3-none-any.whl", "has_sig": false, "md5_digest": "a873754bf59ab559532cc58d55056e9b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8.0,<4.0.0", "size": 8297, "upload_time": "2022-05-26T18:10:31", "upload_time_iso_8601": "2022-05-26T18:10:31.514824Z", "url": "https://files.pythonhosted.org/packages/93/01/df03eaf58bebff493b188a0635ce3e8c202d1b20ec9d985d9aca4becf560/aiolinkding-2022.5.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "71712d01b964c79c7f84f02de55c7dbba746e27adbf6f256229f5a3ea8977211", "md5": "a9c0501e7d5960b076d3073e29413db9", "sha256": "0612e729e3ef01ccd8f94cb8d6e3ce5d7e6c6e5b329d548bf52423124cb99497" }, "downloads": -1, "filename": "aiolinkding-2022.5.2.tar.gz", "has_sig": false, "md5_digest": "a9c0501e7d5960b076d3073e29413db9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8.0,<4.0.0", "size": 10085, "upload_time": "2022-05-26T18:10:33", "upload_time_iso_8601": "2022-05-26T18:10:33.128822Z", "url": "https://files.pythonhosted.org/packages/71/71/2d01b964c79c7f84f02de55c7dbba746e27adbf6f256229f5a3ea8977211/aiolinkding-2022.5.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2022.7.0": [ { "comment_text": "", "digests": { "blake2b_256": "37d08d86044efa241056e10d27ce5475b27ebd257026e94a8b7e473ee2f538be", "md5": "ae32664b97f1515020545049d034373b", "sha256": "3ae442a00bb6ffe4b6686137c9fdaea9b331123c70e08f449c69ba68b2bbf242" }, "downloads": -1, "filename": "aiolinkding-2022.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ae32664b97f1515020545049d034373b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8.0,<4.0.0", "size": 8436, "upload_time": "2022-07-24T03:40:47", "upload_time_iso_8601": "2022-07-24T03:40:47.020938Z", "url": "https://files.pythonhosted.org/packages/37/d0/8d86044efa241056e10d27ce5475b27ebd257026e94a8b7e473ee2f538be/aiolinkding-2022.7.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "562100a558a2f0ff8d0c693422e7913535227cd7d04bd8df5ec0723064b88e20", "md5": "fe3915e31d5bb381eaf17433542cdfca", "sha256": "04f14abbd300bc24754c0d0df6ac2bf547aba63ddca0e9b1482ae10ea22d0698" }, "downloads": -1, "filename": "aiolinkding-2022.7.0.tar.gz", "has_sig": false, "md5_digest": "fe3915e31d5bb381eaf17433542cdfca", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8.0,<4.0.0", "size": 10360, "upload_time": "2022-07-24T03:40:48", "upload_time_iso_8601": "2022-07-24T03:40:48.559284Z", "url": "https://files.pythonhosted.org/packages/56/21/00a558a2f0ff8d0c693422e7913535227cd7d04bd8df5ec0723064b88e20/aiolinkding-2022.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2022.8.0": [ { "comment_text": "", "digests": { "blake2b_256": "3b61bb9784eb3217e03f5b81c4184bb0930eceec2e09a37734e157a9b9b22d48", "md5": "545c882f25984095ab1cce9534c1a3a8", "sha256": "fc91007e87cf43d1c21928b286336e03aadba788b2e7e20e57eb0848f4120a46" }, "downloads": -1, "filename": "aiolinkding-2022.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "545c882f25984095ab1cce9534c1a3a8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8.0,<4.0.0", "size": 8476, "upload_time": "2022-08-04T23:30:41", "upload_time_iso_8601": "2022-08-04T23:30:41.905881Z", "url": "https://files.pythonhosted.org/packages/3b/61/bb9784eb3217e03f5b81c4184bb0930eceec2e09a37734e157a9b9b22d48/aiolinkding-2022.8.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d049d5e7bfe4e4deca37529952082a1fcf0caaac0ce0233d8c38330190c44461", "md5": "ed5470799ff31494e4777c47413c9d87", "sha256": "a1b399ed4eca7bf82ca5db6587f03dd5c00e20f56f602e873942c30b4b1f5cd9" }, "downloads": -1, "filename": "aiolinkding-2022.8.0.tar.gz", "has_sig": false, "md5_digest": "ed5470799ff31494e4777c47413c9d87", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8.0,<4.0.0", "size": 10449, "upload_time": "2022-08-04T23:30:43", "upload_time_iso_8601": "2022-08-04T23:30:43.494930Z", "url": "https://files.pythonhosted.org/packages/d0/49/d5e7bfe4e4deca37529952082a1fcf0caaac0ce0233d8c38330190c44461/aiolinkding-2022.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2023.1.0": [ { "comment_text": "", "digests": { "blake2b_256": "ce832c917a0379d93910fe606afc18229f0185f31b58a8cb763ed4a5608afefc", "md5": "2280fa2cb333ad883c1672f5f99aa098", "sha256": "10489e6df8784bfdb1aedc50cb49970c555e9a6005bdca7425d2c431a79e1f99" }, "downloads": -1, "filename": "aiolinkding-2023.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2280fa2cb333ad883c1672f5f99aa098", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.9.0,<4.0.0", "size": 9799, "upload_time": "2023-01-21T19:47:55", "upload_time_iso_8601": "2023-01-21T19:47:55.943169Z", "url": "https://files.pythonhosted.org/packages/ce/83/2c917a0379d93910fe606afc18229f0185f31b58a8cb763ed4a5608afefc/aiolinkding-2023.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "492915cb315abec8a02a729a33013e428e496552167ec4a9da47aafcc0c389f5", "md5": "3afa39483597157560a6723dad5d49b0", "sha256": "d67c0a020568120a4dde56c0044f5c10527677a92887b46030746f1afd0bce90" }, "downloads": -1, "filename": "aiolinkding-2023.1.0.tar.gz", "has_sig": false, "md5_digest": "3afa39483597157560a6723dad5d49b0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.9.0,<4.0.0", "size": 12053, "upload_time": "2023-01-21T19:47:57", "upload_time_iso_8601": "2023-01-21T19:47:57.732341Z", "url": "https://files.pythonhosted.org/packages/49/29/15cb315abec8a02a729a33013e428e496552167ec4a9da47aafcc0c389f5/aiolinkding-2023.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2023.10.0": [ { "comment_text": "", "digests": { "blake2b_256": "b1d4353eca3f90526c1a6e5f14d55303b001931ed8ec91299c931d19296ba664", "md5": "d0ffb3bd30c7c8b3f6e0365c40c992d8", "sha256": "6892a92532b66aae4142d49d7fa640614e489a2d5ea090dc5e2ba0fadd0fcc5c" }, "downloads": -1, "filename": "aiolinkding-2023.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d0ffb3bd30c7c8b3f6e0365c40c992d8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.9.0,<4.0.0", "size": 10473, "upload_time": "2023-10-01T21:45:04", "upload_time_iso_8601": "2023-10-01T21:45:04.547536Z", "url": "https://files.pythonhosted.org/packages/b1/d4/353eca3f90526c1a6e5f14d55303b001931ed8ec91299c931d19296ba664/aiolinkding-2023.10.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "1e787c69f134546ef8f9021715f85fd5425aeaa18c522acbf0f6bf12ffbaff94", "md5": "30e9e14e95e661e26242985b417bd4e8", "sha256": "2a13a8ed1e367c5339ee27fcdc622adf830f673fe287db72ebed77056f64e65a" }, "downloads": -1, "filename": "aiolinkding-2023.10.0.tar.gz", "has_sig": false, "md5_digest": "30e9e14e95e661e26242985b417bd4e8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.9.0,<4.0.0", "size": 11252, "upload_time": "2023-10-01T21:45:05", "upload_time_iso_8601": "2023-10-01T21:45:05.862356Z", "url": "https://files.pythonhosted.org/packages/1e/78/7c69f134546ef8f9021715f85fd5425aeaa18c522acbf0f6bf12ffbaff94/aiolinkding-2023.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2023.11.0": [ { "comment_text": "", "digests": { "blake2b_256": "8f4318390b5809161ad4e423ca21c59974aa9d7a1afa1ac746760bb285fa7572", "md5": "a59e4d5f35c2a8d09bb08fee436f44ea", "sha256": "7d19dc87286f60a4626913724bc9a6cb10c1796ebd81986b16f6d38886453ca2" }, "downloads": -1, "filename": "aiolinkding-2023.11.0-py3-none-any.whl", "has_sig": false, "md5_digest": "a59e4d5f35c2a8d09bb08fee436f44ea", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.10,<=3.12", "size": 10523, "upload_time": "2023-11-28T22:04:02", "upload_time_iso_8601": "2023-11-28T22:04:02.160963Z", "url": "https://files.pythonhosted.org/packages/8f/43/18390b5809161ad4e423ca21c59974aa9d7a1afa1ac746760bb285fa7572/aiolinkding-2023.11.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "8574ff0503f475de12612531c6575a28dc4649a79981d74a6ccf2f3e7a6dc977", "md5": "00c72d3189386024699701437d71d88d", "sha256": "215c6b87c2a075bc0023d0ed5fc6a1bb28460a508bd83d19291cf0d95434deb5" }, "downloads": -1, "filename": "aiolinkding-2023.11.0.tar.gz", "has_sig": false, "md5_digest": "00c72d3189386024699701437d71d88d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.10,<=3.12", "size": 11316, "upload_time": "2023-11-28T22:04:03", "upload_time_iso_8601": "2023-11-28T22:04:03.487464Z", "url": "https://files.pythonhosted.org/packages/85/74/ff0503f475de12612531c6575a28dc4649a79981d74a6ccf2f3e7a6dc977/aiolinkding-2023.11.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2023.12.0": [ { "comment_text": "", "digests": { "blake2b_256": "f403de0809c4194a817aaebf8eeb0e986eb1e4d22f65b81b297381e5422be064", "md5": "64e9737e5339b9733ce8bfc1cf8f2cfa", "sha256": "e950a8aa263d12678204a83f8394104cf51abf411ba619af27096701e8ebb4af" }, "downloads": -1, "filename": "aiolinkding-2023.12.0-py3-none-any.whl", "has_sig": false, "md5_digest": "64e9737e5339b9733ce8bfc1cf8f2cfa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.10,<4.0", "size": 10523, "upload_time": "2023-12-18T01:47:07", "upload_time_iso_8601": "2023-12-18T01:47:07.354088Z", "url": "https://files.pythonhosted.org/packages/f4/03/de0809c4194a817aaebf8eeb0e986eb1e4d22f65b81b297381e5422be064/aiolinkding-2023.12.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d8e69f5341739ba06f8a8e5051761a011a367a4884a908db9d811b0cc7c92f65", "md5": "ef5425be9f9f27b3b8f8a8db4c7f4ef0", "sha256": "b4af5d1b12cec2ee8d5f75be4c106bc39cc9e38cedc706e3a8b7f39e696c3671" }, "downloads": -1, "filename": "aiolinkding-2023.12.0.tar.gz", "has_sig": false, "md5_digest": "ef5425be9f9f27b3b8f8a8db4c7f4ef0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.10,<4.0", "size": 11296, "upload_time": "2023-12-18T01:47:09", "upload_time_iso_8601": "2023-12-18T01:47:09.102039Z", "url": "https://files.pythonhosted.org/packages/d8/e6/9f5341739ba06f8a8e5051761a011a367a4884a908db9d811b0cc7c92f65/aiolinkding-2023.12.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2023.8.0": [ { "comment_text": "", "digests": { "blake2b_256": "7c162faa344cd4ea006822bb10204c90b3e190f9c78beda659e6b6fc3664a2cd", "md5": "03f03e270e6418746cf98964980a0d8f", "sha256": "641c33d6f790d479b5049d5d2d421fd9f089440cdaf55c9cd2f7283eecad14aa" }, "downloads": -1, "filename": "aiolinkding-2023.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "03f03e270e6418746cf98964980a0d8f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.9.0,<4.0.0", "size": 9865, "upload_time": "2023-08-17T15:00:08", "upload_time_iso_8601": "2023-08-17T15:00:08.827560Z", "url": "https://files.pythonhosted.org/packages/7c/16/2faa344cd4ea006822bb10204c90b3e190f9c78beda659e6b6fc3664a2cd/aiolinkding-2023.8.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "061db9c6f1258af4c5e70a3383e790e870047bd7859d2933cfd91e460e76c2dd", "md5": "ee5716b92351ea77eabe2138f0a786e9", "sha256": "27c5bc3ceb9ef53175fe1af88b8f80dd2b0e010206b396f4a5c813e4295f1746" }, "downloads": -1, "filename": "aiolinkding-2023.8.0.tar.gz", "has_sig": false, "md5_digest": "ee5716b92351ea77eabe2138f0a786e9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.9.0,<4.0.0", "size": 11047, "upload_time": "2023-08-17T15:00:10", "upload_time_iso_8601": "2023-08-17T15:00:10.834862Z", "url": "https://files.pythonhosted.org/packages/06/1d/b9c6f1258af4c5e70a3383e790e870047bd7859d2933cfd91e460e76c2dd/aiolinkding-2023.8.0.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "blake2b_256": "f403de0809c4194a817aaebf8eeb0e986eb1e4d22f65b81b297381e5422be064", "md5": "64e9737e5339b9733ce8bfc1cf8f2cfa", "sha256": "e950a8aa263d12678204a83f8394104cf51abf411ba619af27096701e8ebb4af" }, "downloads": -1, "filename": "aiolinkding-2023.12.0-py3-none-any.whl", "has_sig": false, "md5_digest": "64e9737e5339b9733ce8bfc1cf8f2cfa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.10,<4.0", "size": 10523, "upload_time": "2023-12-18T01:47:07", "upload_time_iso_8601": "2023-12-18T01:47:07.354088Z", "url": "https://files.pythonhosted.org/packages/f4/03/de0809c4194a817aaebf8eeb0e986eb1e4d22f65b81b297381e5422be064/aiolinkding-2023.12.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d8e69f5341739ba06f8a8e5051761a011a367a4884a908db9d811b0cc7c92f65", "md5": "ef5425be9f9f27b3b8f8a8db4c7f4ef0", "sha256": "b4af5d1b12cec2ee8d5f75be4c106bc39cc9e38cedc706e3a8b7f39e696c3671" }, "downloads": -1, "filename": "aiolinkding-2023.12.0.tar.gz", "has_sig": false, "md5_digest": "ef5425be9f9f27b3b8f8a8db4c7f4ef0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.10,<4.0", "size": 11296, "upload_time": "2023-12-18T01:47:09", "upload_time_iso_8601": "2023-12-18T01:47:09.102039Z", "url": "https://files.pythonhosted.org/packages/d8/e6/9f5341739ba06f8a8e5051761a011a367a4884a908db9d811b0cc7c92f65/aiolinkding-2023.12.0.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }