{ "info": { "author": "Cosive", "author_email": "info@cosive.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3.6" ], "description": "Autoseeder\n==========\n\nThe autoseeder-cli tools allow you to interact easily with the\nAutoseeder API to submit new URLs and check the status of existing URLs.\n\nInstallation\n============\n\n.. code:: bash\n\n pip install autoseeder-cli\n\nUsage\n=====\n\n**Please Note:** *Only Python 3.6+ are officially supported by\nautoseeder-cli. Python 2.7 has reached EOL and will not be supported.*\n\nFor each of these tools, before use you should configure the following\nas environment variables:\n\n::\n\n AUTOSEEDER_BASE_URL The URL that the Autoseeder service resides at [e.g.: https://your.instance.hostname/autoseeder/]\n AUTOSEEDER_TOKEN Token to authenticate with - recommended method\n\nLinux/MacOS bash shell:\n\n.. code:: bash\n\n export AUTOSEEDER_BASE_URL=https://your.instance.hostname/autoseeder/\n export AUTOSEEDER_TOKEN='35999b9065\u2026'\n\nWindows Powershell:\n\n::\n\n $env:AUTOSEEDER_BASE_URL = \"https://your.instance.hostname/autoseeder/\"\n $env:AUTOSEEDER_TOKEN = \"35999b9065\u2026\"\n\nWindows Command Prompt:\n\n::\n\n set AUTOSEEDER_BASE_URL=https://your.instance.hostname/autoseeder/\n set AUTOSEEDER_TOKEN=35999b9065\u2026\n\nCommands available:\n===================\n\nautoseeder-cli get_token\n------------------------\n\nRequired Environment Variables\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- AUTOSEEDER_USER\n- AUTOSEEDER_PASS\n- AUTOSEEDER_BASE_URL\n\nvia CLI\n~~~~~~~\n\nLog in to autoseeder and obtain an API token. Note that if you\u2019ve been\nsupplied with a token string to use already, you do not need to do this.\n\nLinux/MacOS command line:\n\n.. code:: bash\n\n AUTOSEEDER_USER=josephpilgrim\n AUTOSEEDER_PASS=onthetrail\n AUTOSEEDER_BASE_URL=https://oregon.usa/autoseeder/\n\n export AUTOSEEDER_TOKEN=$(autoseeder-cli get_token)\n\nvia Python lib\n~~~~~~~~~~~~~~\n\n.. code:: python\n\n import os\n import autoseeder_cli\n\n username = os.environ.get('AUTOSEEDER_USER')\n password = os.environ.get('AUTOSEEDER_PASS')\n base_url = os.environ.get('AUTOSEEDER_BASE_URL')\n\n api = autoseeder_cli.AutoseederTokenGetter(user=username, password=password, base_url=base_url) \n print('API token: {}'.format(api.get_token()))\n\nautoseeder-cli submit\n---------------------\n\n.. _required-environment-variables-1:\n\nRequired Environment Variables\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- AUTOSEEDER_TOKEN\n- AUTOSEEDER_BASE_URL\n\n.. _via-cli-1:\n\nvia CLI\n~~~~~~~\n\n::\n\n autoseeder-cli submit [--seed-region=]\n\nSubmit a single URL to Autoseeder for seeding. You can optionally select\na geographic region to limit seeding activity to.\n\nArguments: \\* required \\* \u2013seed-region= one or more ISO-3166\ntwo-character country identifier, separated by commas.\n\nCommand line:\n\n.. code:: bash\n\n autoseeder-cli submit https://exampledata.net/ --seed-region=AU,NZ\n\n.. _via-python-lib-1:\n\nvia Python lib\n~~~~~~~~~~~~~~\n\n.. code:: python\n\n import os\n import autoseeder_cli\n\n token = os.environ.get('AUTOSEEDER_TOKEN')\n base_url = os.environ.get('AUTOSEEDER_BASE_URL')\n\n submitter = autoseeder_cli.AutoseederSubmitter(token=token, base_url=base_url) \n response = submitter.submit_url('http://example.com', seed_region='AU')\n uuid = response.get('uuid')\n\n print('URL trackable via {}'.format(uuid))\n\nautoseeder-cli list\n-------------------\n\n::\n\n autoseeder-cli list [--limit=] [--desc]\n\n.. _required-environment-variables-2:\n\nRequired Environment Variables\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- AUTOSEEDER_TOKEN\n- AUTOSEEDER_BASE_URL\n\n.. _via-cli-2:\n\nvia CLI\n~~~~~~~\n\nPresents a report of URLs you\u2019ve submitted and their status.\n\nYou may find it helpful to filter and format the output with the `jq\ntool `__.\n\nLinux/MacOS command line:\n\n.. code:: bash\n\n # show last 100\n autoseeder-cli list --limit 100\n\n # filter down with jq\n autoseeder-cli list --limit 100 | \\\n jq '.[] | \\\n select(.statistics != null) | \\\n [ .statistics[].canoncical_url, .statistics[].status ]'\n\nWindows command line:\n\n.. code:: shell\n\n REM show last 100\n autoseeder-cli list --limit 100\n\n REM filter down with jq\n autoseeder-cli list --limit 100 | jq \".[]| select(.statistics != null)| [.statistics[].canonical_url, .statistics[].status]\"\n\n.. _via-python-lib-2:\n\nvia Python lib\n~~~~~~~~~~~~~~\n\n.. code:: python\n\n import os\n import autoseeder_cli\n\n token = os.environ.get('AUTOSEEDER_TOKEN')\n base_url = os.environ.get('AUTOSEEDER_BASE_URL')\n\n lister = autoseeder_cli.AutoseederLister(token=token, base_url=base_url) \n urls = lister.get_url_list()\n\n for url in urls:\n print(url['url'])\n\nautoseeder-cli find_urls\n------------------------\n\n.. _required-environment-variables-3:\n\nRequired Environment Variables\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- AUTOSEEDER_TOKEN\n- AUTOSEEDER_BASE_URL\n\n.. _via-cli-3:\n\nvia CLI\n~~~~~~~\n\nFinds URLs matching a search term, and provides their Universally Unique\nIdentifiers (UUIDs) for further actions (e.g.\u00a0``view``).\n\nCommand line:\n\n.. code:: bash\n\n autoseeder-cli find_urls 'example.com'\n\n.. _via-python-lib-3:\n\nvia Python lib\n~~~~~~~~~~~~~~\n\n.. code:: python\n\n import os\n import autoseeder_cli\n\n token = os.environ.get('AUTOSEEDER_TOKEN')\n base_url = os.environ.get('AUTOSEEDER_BASE_URL')\n\n searcher = autoseeder_cli.AutoseederSearcher(token=token, base_url=base_url) \n uuids = searcher.find_urls('example.com')\n\n for uuid in uuids:\n print(uuid)\n\nautoseeder-cli view\n-------------------\n\n.. _required-environment-variables-4:\n\nRequired Environment Variables\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- AUTOSEEDER_TOKEN\n- AUTOSEEDER_BASE_URL\n\n.. _via-cli-4:\n\nvia CLI\n~~~~~~~\n\nPresents a report of a single URL via its associated Universally unique\nidentifier (UUID) or specific URL.\n\nCommand line:\n\n.. code:: bash\n\n # view by URL UUID\n autoseeder-cli view 2118f16a-3270-4e63-88dc-24b6097739ab # UUID is sample only\n # partial URL string which must match only one registered URL\n autoseeder-cli view example.com/myurl\n\n.. _via-python-lib-4:\n\nvia Python lib\n~~~~~~~~~~~~~~\n\n.. code:: python\n\n import autoseeder_cli\n\n # 2118f16a-3270-4e63-88dc-24b6097739ab is a SAMPLE ONLY, would map to a seeded URL you previously submitted\n viewer = autoseeder_cli.AutoseederURLView(token=token, base_url=myinstance_url)\n url_data = viewer.view('2118f16a-3270-4e63-88dc-24b6097739ab')\n\n for url in url_data:\n print(url['url'])\n\nautoseeder-cli get_csv\n----------------------\n\n::\n\n autoseeder-cli get_csv \n\n.. _required-environment-variables-5:\n\nRequired Environment Variables\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- AUTOSEEDER_TOKEN\n- AUTOSEEDER_BASE_URL\n\n.. _via-cli-5:\n\nvia CLI\n~~~~~~~\n\nPresents a report of URLs you\u2019ve submitted and their status in a CSV\nrepresentation.\n\nCommand line:\n\n.. code:: bash\n\n autoseeder-cli get_csv autoseeder_latest.csv\n\nautoseeder-cli save_screenshot\n------------------------------\n\n.. _required-environment-variables-6:\n\nRequired Environment Variables\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- AUTOSEEDER_TOKEN\n- AUTOSEEDER_BASE_URL\n\n.. _via-cli-6:\n\nvia CLI\n~~~~~~~\n\nYou probably don\u2019t want to use this - it retrieves a single image (png\nformat), referenced by the screenshot unique identifier.\n\nCommand line:\n\n.. code:: bash\n\n autoseeder-cli save_screenshot 2118f16a-3270-4e63-88dc-24b6097739ab ./example.org/indexpage.png\n\nautoseeder-cli save_screenshots\n-------------------------------\n\n.. _required-environment-variables-7:\n\nRequired Environment Variables\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- AUTOSEEDER_TOKEN\n- AUTOSEEDER_BASE_URL\n\n.. _via-cli-7:\n\nvia CLI\n~~~~~~~\n\nRetrieves a one or more screenshots, referenced by the unique identifier\nfor a URL.\n\nAll images will be saved into the specified output path. If the\nspecified path does not already exist a directory will be created.\n\nCommand line:\n\n.. code:: bash\n\n autoseeder-cli save_screenshots 2118f16a-3270-4e63-88dc-24b6097739ab ./example.org/summary_screenshots\n\nautoseeder-cli save_screenshots_all\n-----------------------------------\n\n**Warning: Images may contain sensitive information.**\n\n.. _required-environment-variables-8:\n\nRequired Environment Variables\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- AUTOSEEDER_TOKEN\n- AUTOSEEDER_BASE_URL\n\n**Warning: Images may contain sensitive information.**\n\n.. _via-cli-8:\n\nvia CLI\n~~~~~~~\n\n**Warning: Images may contain sensitive information.**\n\nRetrieves a one or more screenshots, referenced by the unique identifier\nfor a URL.\n\nAll images will be saved into the specified output path. If the\nspecified path does not already exist a directory will be created.\n\n**Warning: Images may contain sensitive information.**\n\nCommand line:\n\n.. code:: bash\n\n autoseeder-cli save_screenshots_all 2118f16a-3270-4e63-88dc-24b6097739ab ./example.org/detailed_screenshots\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://cosive.com", "keywords": "Autoseeder", "license": "Apache 2.0", "maintainer": "", "maintainer_email": "", "name": "autoseeder-cli", "package_url": "https://pypi.org/project/autoseeder-cli/", "platform": null, "project_url": "https://pypi.org/project/autoseeder-cli/", "project_urls": { "Homepage": "https://cosive.com" }, "release_url": "https://pypi.org/project/autoseeder-cli/3.1.0/", "requires_dist": [ "docopt (~=0.6.2)", "environs (~=9.2.0)", "requests (~=2.25.0)", "loguru (~=0.5.3)", "mock (==4.0.2) ; extra == 'test'", "tox (>=3.20) ; extra == 'test'" ], "requires_python": "", "summary": "Autoseeder CLI tool", "version": "3.1.0", "yanked": false, "yanked_reason": null }, "last_serial": 13175990, "releases": { "2.3.1": [ { "comment_text": "", "digests": { "md5": "85f5503d62a238440dbb346b8d842fc3", "sha256": "8eea4dc9353d2fad4f43777cd9e15bfa404904640ea91cd5adb8810d5fff683e" }, "downloads": -1, "filename": "autoseeder_cli-2.3.1-py2-none-any.whl", "has_sig": false, "md5_digest": "85f5503d62a238440dbb346b8d842fc3", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 9302, "upload_time": "2019-09-11T00:52:03", "upload_time_iso_8601": "2019-09-11T00:52:03.882993Z", "url": "https://files.pythonhosted.org/packages/d0/16/1977ea4c49b9616231b2a706860f59dd57326e8de56191eddc109d3147e9/autoseeder_cli-2.3.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8078398ecaab93f2fb0f6aa309d371d8", "sha256": "b6a20e562c7730fb28739b830e778f6ba764e8aa903be46f3078d0d678046580" }, "downloads": -1, "filename": "autoseeder-cli-2.3.1.tar.gz", "has_sig": false, "md5_digest": "8078398ecaab93f2fb0f6aa309d371d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7836, "upload_time": "2019-09-11T00:52:05", "upload_time_iso_8601": "2019-09-11T00:52:05.981808Z", "url": "https://files.pythonhosted.org/packages/5a/1b/092d22cd4a51f58f462cd0a289b86a95e4ddf6935adc674ed59adcfd21c3/autoseeder-cli-2.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.2": [ { "comment_text": "", "digests": { "md5": "3d00b18ee1578c537f8c2f7b9b33d71b", "sha256": "bd442d9a7e019f413a32b2990fe99693d2d1371cbba05399e059b70fa09020bb" }, "downloads": -1, "filename": "autoseeder_cli-2.3.2-py2-none-any.whl", "has_sig": false, "md5_digest": "3d00b18ee1578c537f8c2f7b9b33d71b", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 9336, "upload_time": "2019-09-11T01:16:33", "upload_time_iso_8601": "2019-09-11T01:16:33.294702Z", "url": "https://files.pythonhosted.org/packages/18/13/d126cc7300487a10a7e4d7fa450b210e7440434ea2ec58b3cfbcf1c74a2e/autoseeder_cli-2.3.2-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46249ade1e4be08ea0fa1fd72507b5dd", "sha256": "fc0a86bf2a9ed636ea8b25354e6387f6512d1625e64d1d19c3a21d7a2cb26040" }, "downloads": -1, "filename": "autoseeder_cli-2.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "46249ade1e4be08ea0fa1fd72507b5dd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6788, "upload_time": "2019-10-04T07:28:58", "upload_time_iso_8601": "2019-10-04T07:28:58.548848Z", "url": "https://files.pythonhosted.org/packages/f1/07/591acd5d2fe4f935366edadf8dc88251aa78b53bebdfa1b22d6e1893b08c/autoseeder_cli-2.3.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2506e7397f1d926bc4beb1fade9cffed", "sha256": "2819eb9b5a92508e4a9bd7c617a3c72946060d232242f85719e4269282464d99" }, "downloads": -1, "filename": "autoseeder-cli-2.3.2.tar.gz", "has_sig": false, "md5_digest": "2506e7397f1d926bc4beb1fade9cffed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8458, "upload_time": "2019-09-11T01:16:36", "upload_time_iso_8601": "2019-09-11T01:16:36.261127Z", "url": "https://files.pythonhosted.org/packages/53/3b/bde0cecf45a8e9f3e7b25371251d3adacff060c0c73d26a0fc82a8f0a4a2/autoseeder-cli-2.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.4.1": [ { "comment_text": "", "digests": { "md5": "1d445a311c5713467a55a8535fa3e6cb", "sha256": "6f77e16415cd6150c983beb8e5d7382bdf8e05da4accc7d0d761b4c0d7d2dddc" }, "downloads": -1, "filename": "autoseeder_cli-2.4.1-py2-none-any.whl", "has_sig": false, "md5_digest": "1d445a311c5713467a55a8535fa3e6cb", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 9887, "upload_time": "2019-10-07T03:25:19", "upload_time_iso_8601": "2019-10-07T03:25:19.390782Z", "url": "https://files.pythonhosted.org/packages/85/77/4da11b09eabc00ce459e07fb551c64cb33d17ff56a46cefb4ab5d015ba8c/autoseeder_cli-2.4.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aae799fd407627799b102955c52bf994", "sha256": "0027044ad3ee810016ac4a03614b8ec9685424a4cd35a896d9b644528768d582" }, "downloads": -1, "filename": "autoseeder_cli-2.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "aae799fd407627799b102955c52bf994", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9887, "upload_time": "2019-10-07T03:25:20", "upload_time_iso_8601": "2019-10-07T03:25:20.822777Z", "url": "https://files.pythonhosted.org/packages/82/41/f6785d56ce532c8acf5f8ee1d4c67278086a507671f8cf4422dbf8387e6b/autoseeder_cli-2.4.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7ab679580529373edde4ba0cc5913c97", "sha256": "18138498a59ac5549f71fd04ee4e38a23442042f4c16ee2174718f2824c7bedd" }, "downloads": -1, "filename": "autoseeder-cli-2.4.1.tar.gz", "has_sig": false, "md5_digest": "7ab679580529373edde4ba0cc5913c97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8486, "upload_time": "2019-10-07T03:25:22", "upload_time_iso_8601": "2019-10-07T03:25:22.838989Z", "url": "https://files.pythonhosted.org/packages/28/4f/aba85b4bd5fdd81ba72710d5cb0d1c35d0c22552e3e683d7b3b1c370adb4/autoseeder-cli-2.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.5.1": [ { "comment_text": "", "digests": { "md5": "07a746e5fb1eb8b78af8c886445e111d", "sha256": "b15e7a43247504355fd804c7d967e97463fdefc9a58d066ac42fed525a51273d" }, "downloads": -1, "filename": "autoseeder_cli-2.5.1-py3-none-any.whl", "has_sig": false, "md5_digest": "07a746e5fb1eb8b78af8c886445e111d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10387, "upload_time": "2019-10-31T06:01:49", "upload_time_iso_8601": "2019-10-31T06:01:49.209571Z", "url": "https://files.pythonhosted.org/packages/19/23/d3b530758f758729265a138b4c4dc5a43e077801b4d96284343c26209518/autoseeder_cli-2.5.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "10828f5e94905a7da60e75710e219fea", "sha256": "4e0b693ed7744674248a361c25ad1fd7681cd75717290e2e5560a36a0d303974" }, "downloads": -1, "filename": "autoseeder-cli-2.5.1.tar.gz", "has_sig": false, "md5_digest": "10828f5e94905a7da60e75710e219fea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8989, "upload_time": "2019-10-31T06:01:50", "upload_time_iso_8601": "2019-10-31T06:01:50.625769Z", "url": "https://files.pythonhosted.org/packages/c3/ed/d81265a02fc1478ad176ad06d9398fbd01d530d18d71c5d5a37a42a1a8a2/autoseeder-cli-2.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.5.2": [ { "comment_text": "", "digests": { "md5": "e2bef138120e6b8c527772f97aeda657", "sha256": "deda8c3348fc2142a97bc4ca0d42656bf828839cfe973722eddff628248e014a" }, "downloads": -1, "filename": "autoseeder_cli-2.5.2-py3-none-any.whl", "has_sig": false, "md5_digest": "e2bef138120e6b8c527772f97aeda657", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8773, "upload_time": "2020-12-03T04:15:24", "upload_time_iso_8601": "2020-12-03T04:15:24.293412Z", "url": "https://files.pythonhosted.org/packages/a5/ee/78e16583b24f4cfc2dc07f4fad14b676ae21a3e78e303c01b68a6cda25e9/autoseeder_cli-2.5.2-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.7.0": [ { "comment_text": "", "digests": { "md5": "881ec2474849e662d4c78fa1bc4a4f4d", "sha256": "c33f1af390d28871e562dea2f6ba90e737d6f523f2fe535719326b9a75c4a237" }, "downloads": -1, "filename": "autoseeder_cli-2.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "881ec2474849e662d4c78fa1bc4a4f4d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10565, "upload_time": "2020-12-03T04:15:25", "upload_time_iso_8601": "2020-12-03T04:15:25.566504Z", "url": "https://files.pythonhosted.org/packages/99/cf/a8ae4958b566a91268dbc16ccccf77e37f67235a3a6aa3fab44a1b1b3237/autoseeder_cli-2.7.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "e7a4ea2d6bb3a5926365efc0475d91d9", "sha256": "df5c812b9f6025e8c8e70ed88d74e2dad17ed12e439d8e36728eee28ac91c5c9" }, "downloads": -1, "filename": "autoseeder_cli-3.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e7a4ea2d6bb3a5926365efc0475d91d9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10563, "upload_time": "2022-03-15T00:48:59", "upload_time_iso_8601": "2022-03-15T00:48:59.074307Z", "url": "https://files.pythonhosted.org/packages/8a/2f/ea105324dc663f4b2d19efd5ec56ecd5255b6800f8efcdf95244a9fd917a/autoseeder_cli-3.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e7a4ea2d6bb3a5926365efc0475d91d9", "sha256": "df5c812b9f6025e8c8e70ed88d74e2dad17ed12e439d8e36728eee28ac91c5c9" }, "downloads": -1, "filename": "autoseeder_cli-3.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e7a4ea2d6bb3a5926365efc0475d91d9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10563, "upload_time": "2022-03-15T00:48:59", "upload_time_iso_8601": "2022-03-15T00:48:59.074307Z", "url": "https://files.pythonhosted.org/packages/8a/2f/ea105324dc663f4b2d19efd5ec56ecd5255b6800f8efcdf95244a9fd917a/autoseeder_cli-3.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }