{ "info": { "author": "Teklia ", "author_email": "", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering :: Image Recognition", "Topic :: Text Processing :: Indexing", "Topic :: Text Processing :: Linguistic" ], "description": "Arkindex API Client\n===================\n\n``arkindex-client`` provides an API client to interact with Arkindex servers.\n\n.. contents::\n :depth: 2\n :local:\n :backlinks: none\n\nSetup\n-----\n\nInstall the client using ``pip``::\n\n pip install arkindex-client\n\nUsage\n-----\n\nTo create a client and login using an email/password combo,\nuse the ``ArkindexClient.login`` helper method:\n\n.. code:: python\n\n from arkindex import ArkindexClient\n cli = ArkindexClient()\n cli.login('EMAIL', 'PASSWORD')\n\nThis helper method will save the authentication token in your API client, so\nthat it is reused in later API requests.\n\nIf you already have an API token, you can create your client like so:\n\n.. code:: python\n\n from arkindex import ArkindexClient\n cli = ArkindexClient('YOUR_TOKEN')\n\nMaking requests\n^^^^^^^^^^^^^^^\n\nTo perform a simple API request, you can use the ``request()`` method. The method\ntakes an operation ID as a name and the operation's parameters as keyword arguments.\n\nYou can open ``https://your.arkindex/api-docs/`` to access the API documentation,\nwhich will describe the available API endpoints, including their operation ID and\nparameters.\n\n.. code:: python\n\n corpus = cli.request('RetrieveCorpus', id='...')\n\nThe result will be a Python ``dict`` containing the result of the API request.\nIf the request returns an error, an ``apistar.exceptions.ErrorResponse`` will\nbe raised.\n\nDealing with pagination\n^^^^^^^^^^^^^^^^^^^^^^^\n\nThe Arkindex client adds another helper method for paginated endpoints that\ndeals with pagination for you: ``ArkindexClient.paginate``. This method\nreturns a ``ResponsePaginator`` instance, which is a classic Python\niterator that does not perform any actual requests until absolutely needed:\nthat is, until the next page must be loaded.\n\n.. code:: python\n\n for element in cli.paginate('ListElements', corpus=corpus['id']):\n print(element['name'])\n\n**Warning:** Using ``list`` on a ``ResponsePaginator`` may load dozens\nof pages at once and cause a big load on the server. You can use ``len`` to\nget the total item count before spamming a server.\n\nA call to ``paginate`` may produce hundreds of sub-requests depending on the size\nof the dataset you're requesting. To accommodate with large datasets, and support\nnetwork or performance issues, ``paginate`` supports a ``retries`` parameter to\nspecify the number of sub-request it's able to run for each page in the dataset.\nBy default, the method will retry 5 times per page.\n\nYou may want to allow ``paginate`` to fail on some pages, for really big datasets\n(errors happen). In this case, you should use the optional boolean parameter\n``allow_missing_data`` (set to ``False`` by default).\n\nHere is an example of pagination on a large dataset, allowing data loss, lowering\n retries and listing the missed pages:\n\n.. code:: python\n\n elements = cli.paginate(\n 'ListProcessElements',\n id='XXX',\n retries=3,\n allow_missing_data=True,\n )\n for element in elements:\n print(element['id'])\n\n print(\"Missing pages: {elements.missing}\")\n\n\n\nUsing another server\n^^^^^^^^^^^^^^^^^^^^\n\nBy default, the API client is set to point to the main Arkindex server at\nhttps://arkindex.teklia.com. If you need or want to use this API client on\nanother server, you can use the ``base_url`` keyword argument when setting up\nyour API client:\n\n.. code:: python\n\n cli = ArkindexClient(base_url='https://somewhere')\n\nHandling errors\n^^^^^^^^^^^^^^^\n\nAPIStar_, the underlying API client we use, does most of the error handling.\nIt will raise two types of exceptions:\n\n``apistar.exceptions.ErrorResponse``\n The request resulted in a HTTP 4xx or 5xx response from the server.\n``apistar.exceptions.ClientError``\n Any error that prevents the client from making the request or fetching\n the response: invalid endpoint names or URLs, unsupported content types,\n or unknown request parameters. See the exception messages for more info.\n\nSince this API client retrieves the endpoints description from the server\nusing the base URL, errors can occur during the retrieval and parsing of the\nAPI schema. If this happens, an ``arkindex.exceptions.SchemaError`` exception\nwill be raised.\n\nYou can handle HTTP errors and fetch more information about them using the\nexception's attributes:\n\n.. code:: python\n\n from apistar.exceptions import ErrorResponse\n try:\n # cli.request ...\n except ErrorResponse as e:\n print(e.title) # \"400 Bad Request\"\n print(e.status_code) # 400\n print(e.result) # Any kind of response body the server might give\n\nNote that by default, using ``repr()`` or ``str()`` on APIStar exceptions will\nnot give any useful messages; a fix in APIStar is waiting to be merged. In\nthe meantime, you can use Teklia's `APIStar fork`_::\n\n pip install git+https://gitlab.com/teklia/apistar.git\n\nThis will provide support for ``repr()`` and ``str()``, which will also\nenhance error messages on unhandled exceptions.\n\nExamples\n--------\n\nPrint all folders\n^^^^^^^^^^^^^^^^^\n\n.. code:: python\n\n for folder in cli.paginate('ListElements', folder=True):\n print(folder['name'])\n\nDownload full logs for each Ponos task in a workflow\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n.. code:: python\n\n workflow = cli.request('RetrieveWorkflow', id='...')\n for task in workflow['tasks']:\n with open(task['id'] + '.txt', 'w') as f:\n f.write(cli.request('RetrieveTaskLog', id=task['id']))\n\n.. _APIStar: http://docs.apistar.com/\n.. _APIStar fork: https://gitlab.com/teklia/apistar\n\nLinting\n-------\n\nWe use `pre-commit `_ with `black `_ to automatically format the Python source code of this project.\n\nTo be efficient, you should run pre-commit before committing (hence the name...).\n\nTo do that, run once :\n\n.. code:: shell\n\n pip install pre-commit\n pre-commit install\n\nThe linting workflow will now run on modified files before committing, and will fix issues for you.\n\nIf you want to run the full workflow on all the files: `pre-commit run -a`.\n\n\n\n", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://gitlab.com/arkindex/api-client", "keywords": "api client arkindex", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "arkindex-client", "package_url": "https://pypi.org/project/arkindex-client/", "platform": "", "project_url": "https://pypi.org/project/arkindex-client/", "project_urls": { "Homepage": "https://gitlab.com/arkindex/api-client" }, "release_url": "https://pypi.org/project/arkindex-client/1.0.8/", "requires_dist": [ "apistar (==0.7.2)", "requests (==2.27.1)", "typesystem (==0.2.5)" ], "requires_python": ">=3.6", "summary": "API client for the Arkindex project", "version": "1.0.8", "yanked": false, "yanked_reason": null }, "last_serial": 12707313, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "2865f64cf96169fcb5828b507b27fff1", "sha256": "90f6a989acbfbb69483d3cb6d6bec9ccfa465890dc160cf259d0da5ec7ea2a1d" }, "downloads": -1, "filename": "arkindex_client-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2865f64cf96169fcb5828b507b27fff1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8239, "upload_time": "2018-10-24T15:28:53", "upload_time_iso_8601": "2018-10-24T15:28:53.572873Z", "url": "https://files.pythonhosted.org/packages/c3/04/5170dac818ec6c62e155780a325739b6ed170f6ef26d298d27d883b3b2ed/arkindex_client-0.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c7ab2e9dd3134bf6e742b6ad002321c3", "sha256": "9aced7d4f5c5bbaba2f0a70f8c4529e84d87f352ab167295a704d719d1db749d" }, "downloads": -1, "filename": "arkindex-client-0.1.0.tar.gz", "has_sig": false, "md5_digest": "c7ab2e9dd3134bf6e742b6ad002321c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7256, "upload_time": "2018-10-24T15:28:54", "upload_time_iso_8601": "2018-10-24T15:28:54.471723Z", "url": "https://files.pythonhosted.org/packages/5a/0d/355883e09a4512ce5ce75a61e85dc95e8ae3fe83671de15a7f032d124469/arkindex-client-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "5af7d77f96088a861b4d3b4a6b8d7421", "sha256": "ae657696dd623852ec1a5491bbfa6cbe1f6e79a43809bc83b0c9e2aaaf6703ff" }, "downloads": -1, "filename": "arkindex_client-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "5af7d77f96088a861b4d3b4a6b8d7421", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8908, "upload_time": "2018-11-19T15:05:42", "upload_time_iso_8601": "2018-11-19T15:05:42.180422Z", "url": "https://files.pythonhosted.org/packages/26/61/8dddf84a5e884d174ea1e2cc7316d93b07ce30f4c909ccbce731c2d58551/arkindex_client-0.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dee407bd3d7cb30f0598a121bedabb7f", "sha256": "0f406e62ff086683b2710c84f0b2401262c92d5c425ff318272e17c5d2036e1d" }, "downloads": -1, "filename": "arkindex-client-0.1.1.tar.gz", "has_sig": false, "md5_digest": "dee407bd3d7cb30f0598a121bedabb7f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7913, "upload_time": "2018-11-19T15:05:43", "upload_time_iso_8601": "2018-11-19T15:05:43.272945Z", "url": "https://files.pythonhosted.org/packages/86/a6/45ab18847d7252ff5e8f53c43c36fc13fb9e4313cba15c8c48a8ffeebad3/arkindex-client-0.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.0": [ { "comment_text": "", "digests": { "md5": "7dd2dfedc049fe52158bb56a93a83758", "sha256": "175761ab44526f784ac7d70f08ef287092fd4b37170156bec9ee7f3d5e5d0f71" }, "downloads": -1, "filename": "arkindex_client-0.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7dd2dfedc049fe52158bb56a93a83758", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 29905, "upload_time": "2019-10-11T09:09:44", "upload_time_iso_8601": "2019-10-11T09:09:44.442784Z", "url": "https://files.pythonhosted.org/packages/8a/de/d0947a24d89a11129f5f90aefaf375106d0dc3b115ac2f9b8899989c5a2c/arkindex_client-0.10.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a639be694286a1cfaa5306b215a5b0c9", "sha256": "f24e3f82cdbc76739924d309f5d692144d6a7118f5180f3b65bd807a7bec0870" }, "downloads": -1, "filename": "arkindex-client-0.10.0.tar.gz", "has_sig": false, "md5_digest": "a639be694286a1cfaa5306b215a5b0c9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 30435, "upload_time": "2019-10-11T09:09:46", "upload_time_iso_8601": "2019-10-11T09:09:46.210792Z", "url": "https://files.pythonhosted.org/packages/1a/1b/8653b9ffd166817d26667f4c713f15340a91f78be0a332f152bfba13706d/arkindex-client-0.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "6f26f4471165b6fdad1790dceeb2fb3f", "sha256": "5efaa4342474125fba4a0a213768487218bed94d505a085d5c5c8f7a7b9e190c" }, "downloads": -1, "filename": "arkindex_client-0.10.1-py3-none-any.whl", "has_sig": false, "md5_digest": "6f26f4471165b6fdad1790dceeb2fb3f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 30743, "upload_time": "2019-10-24T15:06:53", "upload_time_iso_8601": "2019-10-24T15:06:53.926531Z", "url": "https://files.pythonhosted.org/packages/a6/4c/a44067e39490b29659b7f9c8d95a7f0c0ef69f88ac0ff7f9cb8127b2fbea/arkindex_client-0.10.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "577aa968be3a29ce474c5caf4b200622", "sha256": "e4370d4563fdb4ff1d1954f6a27e0405ea2b871b9faa4a883ef38e0c944461a1" }, "downloads": -1, "filename": "arkindex-client-0.10.1.tar.gz", "has_sig": false, "md5_digest": "577aa968be3a29ce474c5caf4b200622", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 29547, "upload_time": "2019-10-24T15:06:55", "upload_time_iso_8601": "2019-10-24T15:06:55.588320Z", "url": "https://files.pythonhosted.org/packages/9e/f3/5e10bd18685a2dc27469b7f5243b1523ebc5c576e1a6fcd31938237ddf67/arkindex-client-0.10.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.2": [ { "comment_text": "", "digests": { "md5": "1854975233828a6f321fce5cc9bb0e6f", "sha256": "1d35b0aed743ff5f7f22c5484ecdb770a1afa0c147c21b0d4d555d7e17c16645" }, "downloads": -1, "filename": "arkindex_client-0.10.2-py3-none-any.whl", "has_sig": false, "md5_digest": "1854975233828a6f321fce5cc9bb0e6f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 31457, "upload_time": "2019-11-12T13:28:43", "upload_time_iso_8601": "2019-11-12T13:28:43.189054Z", "url": "https://files.pythonhosted.org/packages/dd/9e/b7df2b6eb53888de2a7801af76acf068fdfe6ea62eb031a76bb884a7de80/arkindex_client-0.10.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "85a613ce021410a0089bd4dbcde0023f", "sha256": "8548bc3c1780c560a395d526c3176d2c4ea85372ce485a99a4a681c2f498d52d" }, "downloads": -1, "filename": "arkindex-client-0.10.2.tar.gz", "has_sig": false, "md5_digest": "85a613ce021410a0089bd4dbcde0023f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 31679, "upload_time": "2019-11-12T13:28:45", "upload_time_iso_8601": "2019-11-12T13:28:45.086698Z", "url": "https://files.pythonhosted.org/packages/2a/7d/2e37c70870d56bba04fab4e911fe8050aa7a11d10cfde2868d72085f3f70/arkindex-client-0.10.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.3": [ { "comment_text": "", "digests": { "md5": "2bbdb2098fa3bef08abdb854adb2a282", "sha256": "5ddd9fc81259a0c8ccd86074d0db334f266c4f34d6d4c9376de139a783e751c4" }, "downloads": -1, "filename": "arkindex_client-0.10.3-py3-none-any.whl", "has_sig": false, "md5_digest": "2bbdb2098fa3bef08abdb854adb2a282", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 32557, "upload_time": "2019-12-03T13:26:05", "upload_time_iso_8601": "2019-12-03T13:26:05.214001Z", "url": "https://files.pythonhosted.org/packages/e4/e1/6a0ad6cdeb3a6a4400b47391d7164abe093bb3b707436b7cb407cc638ab8/arkindex_client-0.10.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08e8fa918c670541934c42b67c79ddbf", "sha256": "7aedda15f519fff951ac63147ad2a1f4dbfc87bcaab56b25a9c03ae2cab47d72" }, "downloads": -1, "filename": "arkindex-client-0.10.3.tar.gz", "has_sig": false, "md5_digest": "08e8fa918c670541934c42b67c79ddbf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 31058, "upload_time": "2019-12-03T13:26:06", "upload_time_iso_8601": "2019-12-03T13:26:06.779386Z", "url": "https://files.pythonhosted.org/packages/83/c3/1740823176bc475579e63bbfe341a9dabb5f7799de6d15349b28f11651d4/arkindex-client-0.10.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.4": [ { "comment_text": "", "digests": { "md5": "4185f1700ce486e9b802431557fe1baa", "sha256": "bf945597a72752f35bad483a0a39893876eb0c333c7d43f59e153a512746c4bb" }, "downloads": -1, "filename": "arkindex_client-0.10.4-py3-none-any.whl", "has_sig": false, "md5_digest": "4185f1700ce486e9b802431557fe1baa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 34020, "upload_time": "2019-12-19T15:34:39", "upload_time_iso_8601": "2019-12-19T15:34:39.050766Z", "url": "https://files.pythonhosted.org/packages/7b/69/289c509654a45e7c25fde6653d68bf9e4b34a2792013eabd31713483ee6e/arkindex_client-0.10.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b7268eb6821717fc7f98acdfa53d815b", "sha256": "fe79c93d8d171dd55a0f90b325f49e54d382aa779ad8ce6ca43d4bf167a6489b" }, "downloads": -1, "filename": "arkindex-client-0.10.4.tar.gz", "has_sig": false, "md5_digest": "b7268eb6821717fc7f98acdfa53d815b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 32329, "upload_time": "2019-12-19T15:34:40", "upload_time_iso_8601": "2019-12-19T15:34:40.882534Z", "url": "https://files.pythonhosted.org/packages/8c/37/257b3dc6f2ba435cb70dd9f1832efe0420759537975a95963d98727a0002/arkindex-client-0.10.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.5": [ { "comment_text": "", "digests": { "md5": "bc7071eafeaa3de781db73f06d86c547", "sha256": "e144092bd3140c0ae69a409d12a226b766a9cf82716ae712ad483bf011d55071" }, "downloads": -1, "filename": "arkindex_client-0.10.5-py3-none-any.whl", "has_sig": false, "md5_digest": "bc7071eafeaa3de781db73f06d86c547", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 36814, "upload_time": "2020-01-16T10:36:49", "upload_time_iso_8601": "2020-01-16T10:36:49.973312Z", "url": "https://files.pythonhosted.org/packages/47/40/a9f027c8f4f3bdd975bc92879f46bd940456414d08a8310d76d81494ae81/arkindex_client-0.10.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08a7c391781bff026f2a85cc0e4ed4ca", "sha256": "97346e172035d1c96e5ac1368c859081d962cb840d7bbde16cb4961f310afd5e" }, "downloads": -1, "filename": "arkindex-client-0.10.5.tar.gz", "has_sig": false, "md5_digest": "08a7c391781bff026f2a85cc0e4ed4ca", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 35176, "upload_time": "2020-01-16T10:36:52", "upload_time_iso_8601": "2020-01-16T10:36:52.278402Z", "url": "https://files.pythonhosted.org/packages/cc/c1/f82d7ff1ba442ed5a811d5bbaea521d8525af58217a8f7d9eb7c3ffa90a8/arkindex-client-0.10.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.6": [ { "comment_text": "", "digests": { "md5": "acfc5c039a18414d087df8043e175351", "sha256": "cdef7db1d9d277bd1b0e80a345af97f5bc5f27fecd588c6a87d322362cc32313" }, "downloads": -1, "filename": "arkindex_client-0.10.6-py3-none-any.whl", "has_sig": false, "md5_digest": "acfc5c039a18414d087df8043e175351", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 35041, "upload_time": "2020-01-21T14:11:02", "upload_time_iso_8601": "2020-01-21T14:11:02.564046Z", "url": "https://files.pythonhosted.org/packages/53/2a/a1fabc9b75a12427439e9e1d845e6c2f7f0905e591267f31a805bf7f13ac/arkindex_client-0.10.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0cd460f56a43c2d1c4c72142de159957", "sha256": "03ba0c8f7c3f4f6399a83607252b9d5a61c439384c7b6103c85dded5cde8c5c4" }, "downloads": -1, "filename": "arkindex-client-0.10.6.tar.gz", "has_sig": false, "md5_digest": "0cd460f56a43c2d1c4c72142de159957", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 33443, "upload_time": "2020-01-21T14:11:04", "upload_time_iso_8601": "2020-01-21T14:11:04.501693Z", "url": "https://files.pythonhosted.org/packages/67/ec/a26a29f18cca968c525316d97ff782b8e7e25e51a28e4c47d409904288eb/arkindex-client-0.10.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "48eafad5147c33531813fcfbb2ac2298", "sha256": "23defa022475127524f97b7121df054e47dacd81f5d096b3c6d6a03a07d2a87f" }, "downloads": -1, "filename": "arkindex_client-0.11.0-py3-none-any.whl", "has_sig": false, "md5_digest": "48eafad5147c33531813fcfbb2ac2298", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 35042, "upload_time": "2020-01-21T15:14:12", "upload_time_iso_8601": "2020-01-21T15:14:12.484298Z", "url": "https://files.pythonhosted.org/packages/75/1a/543cd5a412ff4389c03fb7ac42144ffa6a740f6f9ef1ac3fa3cc1cc83a81/arkindex_client-0.11.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "524b96e895a2f8189738bea78e14bbe6", "sha256": "c072a610b42178e677b1d855c0acfae23bbfb57fd6a1b36603af47421c8b8df5" }, "downloads": -1, "filename": "arkindex-client-0.11.0.tar.gz", "has_sig": false, "md5_digest": "524b96e895a2f8189738bea78e14bbe6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 33451, "upload_time": "2020-01-21T15:14:14", "upload_time_iso_8601": "2020-01-21T15:14:14.394964Z", "url": "https://files.pythonhosted.org/packages/89/46/ff4a48dae6c806f1935232626aaa0688c4f16aabf965ec7423fb7515160d/arkindex-client-0.11.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "a01c9d33acb48d82b702500ba3c19dd9", "sha256": "cd0a41c241e91e2a20eed118c6efbcfa0d2ae51aec03886939c2a9c7ed0fbf88" }, "downloads": -1, "filename": "arkindex_client-0.11.1-py3-none-any.whl", "has_sig": false, "md5_digest": "a01c9d33acb48d82b702500ba3c19dd9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 35882, "upload_time": "2020-02-12T13:23:01", "upload_time_iso_8601": "2020-02-12T13:23:01.649738Z", "url": "https://files.pythonhosted.org/packages/46/57/af7995327db5d304288b2a76ed109ca1041bbeea46b63e6af41240e10c49/arkindex_client-0.11.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4268c92b639e28bb555f90ea4f542f9c", "sha256": "db671aa6b95c72339f488109dd9b63ca483569d2de1716b8119e1b59552441a7" }, "downloads": -1, "filename": "arkindex-client-0.11.1.tar.gz", "has_sig": false, "md5_digest": "4268c92b639e28bb555f90ea4f542f9c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 34314, "upload_time": "2020-02-12T13:23:02", "upload_time_iso_8601": "2020-02-12T13:23:02.984081Z", "url": "https://files.pythonhosted.org/packages/5e/54/568b1af13eb6a926a1debcbed1a1ee2576e21fef165550a111df1908b258/arkindex-client-0.11.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.2": [ { "comment_text": "", "digests": { "md5": "1538fde4fe27dec882a3cf70142440b6", "sha256": "b0ec0fa26e0b929080beb20ea2322a25ef15ea17bab6b2ec903322575f14e538" }, "downloads": -1, "filename": "arkindex_client-0.11.2-py3-none-any.whl", "has_sig": false, "md5_digest": "1538fde4fe27dec882a3cf70142440b6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 35978, "upload_time": "2020-03-02T13:09:36", "upload_time_iso_8601": "2020-03-02T13:09:36.918005Z", "url": "https://files.pythonhosted.org/packages/35/0d/2b25642ca68039ec6ed3de1deb7c7b7860735c69ff997ffcdd91b9bf17a8/arkindex_client-0.11.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1210d4ff2f1741fa3fe5211d888f6585", "sha256": "4574d2a8b477d346e46eef4b5c83753027bc32b6851569cb9bf957501aeec09b" }, "downloads": -1, "filename": "arkindex-client-0.11.2.tar.gz", "has_sig": false, "md5_digest": "1210d4ff2f1741fa3fe5211d888f6585", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 34412, "upload_time": "2020-03-02T13:09:38", "upload_time_iso_8601": "2020-03-02T13:09:38.621469Z", "url": "https://files.pythonhosted.org/packages/83/a6/0118983d1c7c8df67afd3d7bba6fe962cf4eeac279b787f0a945ce9f9233/arkindex-client-0.11.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "d3518db877249eca27f33a575ef03738", "sha256": "966c7cf3eec04ce2696c8bf52d48d4a606a66f2b174a1bdf621fa370d52bfac7" }, "downloads": -1, "filename": "arkindex_client-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d3518db877249eca27f33a575ef03738", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 13040, "upload_time": "2019-04-05T10:44:29", "upload_time_iso_8601": "2019-04-05T10:44:29.438958Z", "url": "https://files.pythonhosted.org/packages/36/c7/e2921e923c33836639454f961236b4984c3e798da2868f437ab24f99cdd8/arkindex_client-0.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6e808ae9677d8c39e3b5721054a0d91d", "sha256": "73e91a7e6e8a28907cffb6100325bc032ee4930430db4f1c446c04a2d42338f7" }, "downloads": -1, "filename": "arkindex-client-0.2.0.tar.gz", "has_sig": false, "md5_digest": "6e808ae9677d8c39e3b5721054a0d91d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 13355, "upload_time": "2019-04-05T10:44:30", "upload_time_iso_8601": "2019-04-05T10:44:30.461623Z", "url": "https://files.pythonhosted.org/packages/41/fc/5af955109c56da14434d4dc72f0a4a89885da3f636937a2c46fe9d102a9f/arkindex-client-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "106878cb0c36b942e287c4881591ba23", "sha256": "80608b363b68071ca913778e7e074f2e90b215321cb332e0ee440fd101d9e393" }, "downloads": -1, "filename": "arkindex_client-0.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "106878cb0c36b942e287c4881591ba23", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 13659, "upload_time": "2019-04-10T09:52:10", "upload_time_iso_8601": "2019-04-10T09:52:10.626056Z", "url": "https://files.pythonhosted.org/packages/d7/da/d8430e984a014687904cf7342787d9f2be16cd7550b2768abe79478882eb/arkindex_client-0.2.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b26eaf6fd8d65b9899c51c755e229a76", "sha256": "5da3b01db9dd421b682c5c8c989d2d6a4075657a9cda3c6e564a4f6a3f87a9c9" }, "downloads": -1, "filename": "arkindex-client-0.2.1.tar.gz", "has_sig": false, "md5_digest": "b26eaf6fd8d65b9899c51c755e229a76", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 14132, "upload_time": "2019-04-10T09:52:11", "upload_time_iso_8601": "2019-04-10T09:52:11.988810Z", "url": "https://files.pythonhosted.org/packages/95/76/6d5c55d9f0a547ba38cc499e3dcbda428677dc4cc54b11ff2ee3ce4413b5/arkindex-client-0.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "896c9757c6e352d6f44e6311372c3175", "sha256": "06e2c9eefabe399372965fa5ce30bd52ebc11dedb331a082df95cd80c1263a6f" }, "downloads": -1, "filename": "arkindex_client-0.9.4-py3-none-any.whl", "has_sig": false, "md5_digest": "896c9757c6e352d6f44e6311372c3175", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 18015, "upload_time": "2019-05-13T07:52:51", "upload_time_iso_8601": "2019-05-13T07:52:51.069031Z", "url": "https://files.pythonhosted.org/packages/a3/ed/b511a4fcce6f4794d0b3a75c4fada7aea3b737b18cefa3a93adaa599512e/arkindex_client-0.9.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "894e5a7873fe3a402aea3d4e2faff359", "sha256": "35fbd96d59a2c4b8154e48401d67a18c1246f2d5fb4111d52637823e786082e9" }, "downloads": -1, "filename": "arkindex-client-0.9.4.tar.gz", "has_sig": false, "md5_digest": "894e5a7873fe3a402aea3d4e2faff359", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 18870, "upload_time": "2019-05-13T07:52:52", "upload_time_iso_8601": "2019-05-13T07:52:52.682908Z", "url": "https://files.pythonhosted.org/packages/58/93/dfac2dcfd9c02cdadcd17a72edaf323ebfda4e1b56f81bbbe4541f94d393/arkindex-client-0.9.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "b8b6a90477363ded00907320438fd7a6", "sha256": "11ed9a62e4d02f801bbd3338ce8cba8be5371eebf3efed14a7d63aac974f4665" }, "downloads": -1, "filename": "arkindex_client-0.9.5-py3-none-any.whl", "has_sig": false, "md5_digest": "b8b6a90477363ded00907320438fd7a6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 20623, "upload_time": "2019-06-25T10:32:55", "upload_time_iso_8601": "2019-06-25T10:32:55.092989Z", "url": "https://files.pythonhosted.org/packages/ce/91/2c1faac580bd4a65891a165cccbd3da9204a2afa0b526766399c53ed683e/arkindex_client-0.9.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "79e3aa9fa824aea5133d3e2dbeca0457", "sha256": "440777065bf5a0a31ab7bc59583d4d3234230a17a02fd5884fff092333f4b50a" }, "downloads": -1, "filename": "arkindex-client-0.9.5.tar.gz", "has_sig": false, "md5_digest": "79e3aa9fa824aea5133d3e2dbeca0457", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 21272, "upload_time": "2019-06-25T10:32:56", "upload_time_iso_8601": "2019-06-25T10:32:56.706401Z", "url": "https://files.pythonhosted.org/packages/40/1d/c1229fbb772466de91b0949005b5790538d102914810abd6c6c0cd26a187/arkindex-client-0.9.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.6": [ { "comment_text": "", "digests": { "md5": "b6e9ab6b5d4fa1c6caf560b915c5bfd5", "sha256": "d3f9da1386f3e4cc7a3eee904bc066561cf5806c822a4c77dc7859d86031386d" }, "downloads": -1, "filename": "arkindex_client-0.9.6-py3-none-any.whl", "has_sig": false, "md5_digest": "b6e9ab6b5d4fa1c6caf560b915c5bfd5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 23178, "upload_time": "2019-09-04T13:13:54", "upload_time_iso_8601": "2019-09-04T13:13:54.993303Z", "url": "https://files.pythonhosted.org/packages/f4/80/3a9b8041fd7f63c3553c0056b793f706460d66da2cd4fb89e57526970212/arkindex_client-0.9.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4bf7bb9502278dcde636cfe1c0eedba1", "sha256": "62316902075f23e0755bdd0e6f64f6ddd18dfe0746d10a0e10324496ceccd0f9" }, "downloads": -1, "filename": "arkindex-client-0.9.6.tar.gz", "has_sig": false, "md5_digest": "4bf7bb9502278dcde636cfe1c0eedba1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 23741, "upload_time": "2019-09-04T13:13:56", "upload_time_iso_8601": "2019-09-04T13:13:56.336233Z", "url": "https://files.pythonhosted.org/packages/36/f6/71fd6d849578c98e4b5febb5fc77f6eb2e80e19c1f08325f0574a2f644c9/arkindex-client-0.9.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.7": [ { "comment_text": "", "digests": { "md5": "3115f08678a90eb1aa2d9e389423268c", "sha256": "537bb2bae796feaeb33c186272bf0b8968f24196f7bbad30a533ad69c451f25e" }, "downloads": -1, "filename": "arkindex_client-0.9.7-py3-none-any.whl", "has_sig": false, "md5_digest": "3115f08678a90eb1aa2d9e389423268c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 27366, "upload_time": "2019-09-09T14:20:43", "upload_time_iso_8601": "2019-09-09T14:20:43.470785Z", "url": "https://files.pythonhosted.org/packages/84/45/09f0ce656a58b9e74674afc4e54c49d78dbf1c032be37a6ad78728b21604/arkindex_client-0.9.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cdb03bf33e3ca11337fbbd76217cb9f1", "sha256": "72883e513c7eafe97235d3d4182e888baf903389e15fae19b6372d42681c2f51" }, "downloads": -1, "filename": "arkindex-client-0.9.7.tar.gz", "has_sig": false, "md5_digest": "cdb03bf33e3ca11337fbbd76217cb9f1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 27713, "upload_time": "2019-09-09T14:20:45", "upload_time_iso_8601": "2019-09-09T14:20:45.363955Z", "url": "https://files.pythonhosted.org/packages/54/14/e9dec1275b097242ece51ae7e3b52d488940174598c2653002f9f671e099/arkindex-client-0.9.7.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "c815ac02a2cb7bf562a749c43f3cf552", "sha256": "08d91602e8d538bd16d0269508d496acd1e10cfe1b9c22fc3e0cd3aeffd91fbb" }, "downloads": -1, "filename": "arkindex_client-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c815ac02a2cb7bf562a749c43f3cf552", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 10468, "upload_time": "2020-06-12T10:19:42", "upload_time_iso_8601": "2020-06-12T10:19:42.060679Z", "url": "https://files.pythonhosted.org/packages/e1/35/32cd71ede1e2a56696e7046387e2ab806f9454c78b5788946555a8a7f870/arkindex_client-1.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e40cf142e020c2b0a1528c0804c46fa", "sha256": "3581899d91b0470c383014ae3a9128332cc664b2474fbad8cf63ee1a07ada3e7" }, "downloads": -1, "filename": "arkindex-client-1.0.0.tar.gz", "has_sig": false, "md5_digest": "3e40cf142e020c2b0a1528c0804c46fa", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 9584, "upload_time": "2020-06-12T10:19:43", "upload_time_iso_8601": "2020-06-12T10:19:43.467119Z", "url": "https://files.pythonhosted.org/packages/9f/48/89e3f37f0271ac24a49170b325b44d877c8f84ec2f51f60530e9b0f072f2/arkindex-client-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "6610eef2fd262fa87b9bf4df13708918", "sha256": "aaa87ed207a8a0b973548c6aedf865d7cc4e345f618331007e99146998fb4b2b" }, "downloads": -1, "filename": "arkindex_client-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "6610eef2fd262fa87b9bf4df13708918", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 10257, "upload_time": "2020-09-10T07:41:14", "upload_time_iso_8601": "2020-09-10T07:41:14.435541Z", "url": "https://files.pythonhosted.org/packages/08/59/893e2f4ed239f9a4cf1a08bad302f1f7fb4f1906f651a162726ac43c30b6/arkindex_client-1.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c734d2105605845afd8ddcda08715337", "sha256": "44f222ab46007cd2f9b12f6ec242728cc13972c31c390ed49830b098a315ed38" }, "downloads": -1, "filename": "arkindex-client-1.0.1.tar.gz", "has_sig": false, "md5_digest": "c734d2105605845afd8ddcda08715337", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 10421, "upload_time": "2020-09-10T07:41:15", "upload_time_iso_8601": "2020-09-10T07:41:15.807724Z", "url": "https://files.pythonhosted.org/packages/bb/92/f3fa769c4def844ba98b3645a0a76830725d3dfde5d6ede9ba8758aaad95/arkindex-client-1.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "a353d5b7c61b6514b8123fe6b07f5099", "sha256": "a4d511ff7181f7f5f4470af24d79fa5d5bc01f7c57a5f23dfdc3ad8cf2835e4e" }, "downloads": -1, "filename": "arkindex_client-1.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "a353d5b7c61b6514b8123fe6b07f5099", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 9879, "upload_time": "2020-09-23T08:40:50", "upload_time_iso_8601": "2020-09-23T08:40:50.656673Z", "url": "https://files.pythonhosted.org/packages/53/42/3514f3164875794f46113c35ee50e20f147a8b184954a3c15fb519ad09b4/arkindex_client-1.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab7ba949a5abb860599334695a87d217", "sha256": "b1a44b04453dccdf9671762e3fc2d23b6e96db9a2bf97bebb06bfe5368c98771" }, "downloads": -1, "filename": "arkindex-client-1.0.2.tar.gz", "has_sig": false, "md5_digest": "ab7ba949a5abb860599334695a87d217", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 8742, "upload_time": "2020-09-23T08:40:52", "upload_time_iso_8601": "2020-09-23T08:40:52.138781Z", "url": "https://files.pythonhosted.org/packages/7b/3b/46fe2b90e8e7cc4ec9a7b7da99aac980857cd0640866d96c45cc694c9df0/arkindex-client-1.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "37171aee2c53d0b3ddd46ec7c418ba2d", "sha256": "a9f24b191b59e945cdc7d9cf50f233fee32679e7b3548c86690fb4bda73c9e4b" }, "downloads": -1, "filename": "arkindex_client-1.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "37171aee2c53d0b3ddd46ec7c418ba2d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 9570, "upload_time": "2020-09-30T13:33:26", "upload_time_iso_8601": "2020-09-30T13:33:26.105528Z", "url": "https://files.pythonhosted.org/packages/f7/8e/d9b5bdd8cbb70bda52f61d5011a56999c7445384e8000282ca74ffccfc1c/arkindex_client-1.0.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed6a59e42f4462010116f1dc271f260d", "sha256": "0d80efe50206a9022c101b53742104d7b11bde83804c0ab2fe123665e3f681a9" }, "downloads": -1, "filename": "arkindex-client-1.0.3.tar.gz", "has_sig": false, "md5_digest": "ed6a59e42f4462010116f1dc271f260d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 8774, "upload_time": "2020-09-30T13:33:27", "upload_time_iso_8601": "2020-09-30T13:33:27.893712Z", "url": "https://files.pythonhosted.org/packages/dd/b1/340deb14ad2e41e318dee191ab69bc8a7a40c32d4f33918d66f3481abfbe/arkindex-client-1.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "0226d3f44bf7901dfb1ce038695e73be", "sha256": "d8b5b95a2378baad781381ab3ffc8273f4556962ae98b7c7c6eaeecfb6af1e51" }, "downloads": -1, "filename": "arkindex_client-1.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "0226d3f44bf7901dfb1ce038695e73be", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 10967, "upload_time": "2020-10-19T15:30:19", "upload_time_iso_8601": "2020-10-19T15:30:19.805178Z", "url": "https://files.pythonhosted.org/packages/b5/9c/ab7c0e8b4f8df30de10f06e78ef072c4d624c01875c769f759354616cf3b/arkindex_client-1.0.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3a18d20fbacf8cb755f86855ec04a4c5", "sha256": "19c2108670afc74afdd74f0f2671e4e2f8679969a49f87f4b623e86cc3b28517" }, "downloads": -1, "filename": "arkindex-client-1.0.4.tar.gz", "has_sig": false, "md5_digest": "3a18d20fbacf8cb755f86855ec04a4c5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 11279, "upload_time": "2020-10-19T15:30:22", "upload_time_iso_8601": "2020-10-19T15:30:22.539612Z", "url": "https://files.pythonhosted.org/packages/32/90/374f9294124fbdf9d06277a639d1252477a647f371254b484e47108059ea/arkindex-client-1.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "a3cc5e674c758b6793a47e442ee957a3", "sha256": "e1e5a2d1d545423886e8fdca38087aeca5f250a53a35925a7ef5bd3ff93e9f37" }, "downloads": -1, "filename": "arkindex_client-1.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "a3cc5e674c758b6793a47e442ee957a3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 11529, "upload_time": "2020-11-19T15:39:38", "upload_time_iso_8601": "2020-11-19T15:39:38.065060Z", "url": "https://files.pythonhosted.org/packages/68/96/a1106dd66504e85ba48be66330d5ce460d8e2d32e627f0176580448fe606/arkindex_client-1.0.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8dfb20a6bf2bb72bf06ca43bbbf0bded", "sha256": "a46e789ed3d12d60c4dd963148bbaab44efef5bccab9e95444be87064d04e8d4" }, "downloads": -1, "filename": "arkindex-client-1.0.5.tar.gz", "has_sig": false, "md5_digest": "8dfb20a6bf2bb72bf06ca43bbbf0bded", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 12955, "upload_time": "2020-11-19T15:39:39", "upload_time_iso_8601": "2020-11-19T15:39:39.645023Z", "url": "https://files.pythonhosted.org/packages/87/fc/c907be65f04cf95c187ebf4f0d12a5b014c98ed0d87331c3fdf44105120d/arkindex-client-1.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "b71f11ab1364ff0db73550ad6e1b715b", "sha256": "c55687725561615becaf9d2ce99e57744a5d11efdbb6c3a9ff3a8f82aed11db9" }, "downloads": -1, "filename": "arkindex_client-1.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "b71f11ab1364ff0db73550ad6e1b715b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 11422, "upload_time": "2020-11-26T15:41:37", "upload_time_iso_8601": "2020-11-26T15:41:37.177080Z", "url": "https://files.pythonhosted.org/packages/cf/47/f027db4e73393f77fe4548b40d93e7f6c68cf02eca659dcd09d13c4a1465/arkindex_client-1.0.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e74597b9c888125c163f9c2df4ca559c", "sha256": "8dabea20f4a61603680719a80bf880850da0876a2327f63f77245d17c70f3de2" }, "downloads": -1, "filename": "arkindex-client-1.0.6.tar.gz", "has_sig": false, "md5_digest": "e74597b9c888125c163f9c2df4ca559c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 12653, "upload_time": "2020-11-26T15:41:38", "upload_time_iso_8601": "2020-11-26T15:41:38.682380Z", "url": "https://files.pythonhosted.org/packages/db/6e/cfb1b54720470d4b87baebbcc7ffc6a0e1c1319ef57bbb47312bd254f866/arkindex-client-1.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "848554ffc426e2b45048ce4fc3ff5f3d", "sha256": "620c44d80305dfbf9afb4652ceae21dbeec1e2d56c55972120bba5d01892832d" }, "downloads": -1, "filename": "arkindex_client-1.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "848554ffc426e2b45048ce4fc3ff5f3d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 11537, "upload_time": "2021-09-17T11:57:30", "upload_time_iso_8601": "2021-09-17T11:57:30.926885Z", "url": "https://files.pythonhosted.org/packages/5f/8f/fce15b2e52f95b76e001e31accb343d9ce915f3777abc226e9c8c9438f4d/arkindex_client-1.0.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a6312614c240282f53dda8fb6be2e1c7", "sha256": "8cc2183cdb7a73eefd2b84e7630b0bc53261f0544471f1e53e6373d841193510" }, "downloads": -1, "filename": "arkindex-client-1.0.7.tar.gz", "has_sig": false, "md5_digest": "a6312614c240282f53dda8fb6be2e1c7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 9678, "upload_time": "2021-09-17T11:57:32", "upload_time_iso_8601": "2021-09-17T11:57:32.713900Z", "url": "https://files.pythonhosted.org/packages/6d/94/cca66876175bfae8e99fbca186c9f7d483e8113a91586dbb993decb66280/arkindex-client-1.0.7.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.8": [ { "comment_text": "", "digests": { "md5": "75b805b0aaddde317a7dacaf97696371", "sha256": "974ccc94e77f992813bdd8c4ed4af6cf3a720dcdd3c0cd4c74b719c57f0ae62c" }, "downloads": -1, "filename": "arkindex_client-1.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "75b805b0aaddde317a7dacaf97696371", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 11538, "upload_time": "2022-01-27T08:08:51", "upload_time_iso_8601": "2022-01-27T08:08:51.921374Z", "url": "https://files.pythonhosted.org/packages/e9/fb/5ef889333b29d97e19588af669f42b8fa4206cd40a96a57067e12fd8655b/arkindex_client-1.0.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a43ca5da43cc1f17c2a7e94307ab8ad", "sha256": "386fb1d17559329a1e54511a3fba64180e322dc2abf16d874589e6b2b8535f90" }, "downloads": -1, "filename": "arkindex-client-1.0.8.tar.gz", "has_sig": false, "md5_digest": "9a43ca5da43cc1f17c2a7e94307ab8ad", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 9684, "upload_time": "2022-01-27T08:08:53", "upload_time_iso_8601": "2022-01-27T08:08:53.489532Z", "url": "https://files.pythonhosted.org/packages/54/55/3b6c39936bbdf68d6e2598f589c2f2b0602730983f9a787cbf95e1fa3054/arkindex-client-1.0.8.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "75b805b0aaddde317a7dacaf97696371", "sha256": "974ccc94e77f992813bdd8c4ed4af6cf3a720dcdd3c0cd4c74b719c57f0ae62c" }, "downloads": -1, "filename": "arkindex_client-1.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "75b805b0aaddde317a7dacaf97696371", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 11538, "upload_time": "2022-01-27T08:08:51", "upload_time_iso_8601": "2022-01-27T08:08:51.921374Z", "url": "https://files.pythonhosted.org/packages/e9/fb/5ef889333b29d97e19588af669f42b8fa4206cd40a96a57067e12fd8655b/arkindex_client-1.0.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a43ca5da43cc1f17c2a7e94307ab8ad", "sha256": "386fb1d17559329a1e54511a3fba64180e322dc2abf16d874589e6b2b8535f90" }, "downloads": -1, "filename": "arkindex-client-1.0.8.tar.gz", "has_sig": false, "md5_digest": "9a43ca5da43cc1f17c2a7e94307ab8ad", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 9684, "upload_time": "2022-01-27T08:08:53", "upload_time_iso_8601": "2022-01-27T08:08:53.489532Z", "url": "https://files.pythonhosted.org/packages/54/55/3b6c39936bbdf68d6e2598f589c2f2b0602730983f9a787cbf95e1fa3054/arkindex-client-1.0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }