{ "info": { "author": "Peter Eacmen", "author_email": "peacmen@refirmlabs.com", "bugtrack_url": null, "classifiers": [ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10" ], "description": "centrifuge-cli: The official Python CLI for Centrifuge\n=======================================================\n\nCentrifuge is an automated firmware analysis platform. It allows users to upload\ntheir firmware images to be analyzed for various security issues. This utility\ngives users the ability to interact and automate tasks via the Centrifuge\nRESTful API.\n\nFeatures\n--------\n\n- Upload firmware\n- Delete firmware reports\n- Query firmware analysis results\n- Search for firmware uploads\n\nQuick Start\n-----------\n\nCheck your Python version (must be 3.6 or later):\n\n.. code-block:: bash\n\n $ python --version\n\nTo install the Centrifuge CLI, simply:\n\n.. code-block:: bash\n\n $ pip install centrifuge-cli\n\nConfigure your environment:\n\n.. code-block:: bash\n\n $ export CENTRIFUGE_APIKEY=xxxx\n $ export CENTRIFUGE_URL=https://centrifuge.refirmlabs.com # change this if you're single tenant or on-premise\n\nTo query the list of available reports:\n\n.. code-block:: bash\n\n $ centrifuge reports list\n\nUnder the hood the Centrifuge CLI is using python Pandas data frames to report\nthe results to the user. Since the API is json, which has hierarchical structure\nto it, we have chosen to flatten all the results into a column/row format for\nviewing inside of a terminal or for importing into spreadsheets, etc. However\nthe cli can also output CSV, and the original json results. For example:\n\nCSV:\n\n.. code-block:: bash\n\n $ centrifuge --outfmt=csv reports list\n\nJSON:\n\n.. code-block:: bash\n\n $ centrifuge --outfmt=json reports list\n\nWhen generating the human-readable Pandas output or when generating CSV you have\nthe option of choosing which columns you wish to export. For example, to display\nonly the original filename and model number of the firmware that was uploaded: \n\n.. code-block:: bash\n\n $ centrifuge -foriginalFilename -fdevice reports list\n\n\nUploading Firmware\n------------------\nUploading firmware to centrifuge is quite simple. All you need to do is supply\nmake/model/version and the file you want to upload:\n\n.. code-block:: bash\n\n $ centrifuge upload --make=Linksys --model=E1200 --version=1.0.04 /path/to/FW_E1200_v1.0.04.001_US_20120307.bin\n\nSearching Through Firmware Uploads\n----------------------------------\n\nYou can search through the uploaded firmware for keywords in username, filename, make, model, etc:\n\n.. code-block:: bash\n\n $ centrifuge reports search \"Linksys\"\n\nQuerying Report Results\n------------------------\n\nAll the following commands require access to what we refer to as a \"UFID\" or\nUpload File ID. This ID can be seen through the web interface, its also the last\npart of the URL when viewing a report, it is also the ``id`` field when running\nthe ``centrifuge reports list`` command above. It should also be noted that all of\nthese commands also support the ``--outfmt`` argument so you can export to CSV and\nto JSON. However be aware that these arguments are positional in nature, you\nmust supply the ``--outfmt`` argument between ``centrifuge`` and ``report`` on the\ncommand line or it will not be accepted. \n\nYou can see the available commands by viewing the help output:\n\n.. code-block:: bash\n\n $ centrifuge report --help\n Usage: centrifuge report [OPTIONS] COMMAND [ARGS]...\n \n Options:\n --ufid ID Centrifuge report ID [required]\n --help Show this message and exit.\n\n Commands:\n binary-hardening\n certificates\n check-policy\n code-emulated\n code-static\n code-summary\n crypto deprecated (use certificates, public-keys, and...\n delete\n guardian\n info\n passhash\n private-keys\n public-keys\n sbom\n security-checklist\n\nGet basic information about the report (User, Make, Model, Version, filename, etc):\n\n.. code-block:: bash\n\n $ centrifuge report --ufid= info\n\nGet Guardian Results:\n\n.. code-block:: bash\n\n $ centrifuge report --ufid= guardian\n\nGet Password Hashes:\n\n.. code-block:: bash\n\n $ centrifuge report --ufid= passhash\n\nGet Certificates:\n\n.. code-block:: bash\n\n $ centrifuge report --ufid= certificates\n\nGet Public Keys:\n\n.. code-block:: bash\n\n $ centrifuge report --ufid= public-keys\n\nGet Private Keys:\n\n.. code-block:: bash\n\n $ centrifuge report --ufid= private-keys\n\nGet SBOM Results:\n\n.. code-block:: bash\n\n $ centrifuge report --ufid= sbom\n\nGet Security Checklist Results:\n\n.. code-block:: bash\n\n $ centrifuge report --ufid= security-checklist\n\nGet Legacy Crypto Results (firmware uploaded before September 30th 2019). Refer to \n``certificates``, ``public-key``, and ``private-key`` now.\n\n.. code-block:: bash\n\n $ centrifuge report --ufid= crypto\n\n\nThe code analysis section is a little bit more complicated, since the data is\nmore structured. To understand how to access this data you need to understand\nthat when we process a firmware we must extract it first, each time we extract a\nfilesystem or file container those groups of files are given an ``extraction ID``\nor ``EXID``. To get code analysis results for an individual file you must know the\n``EXID`` and the file's ``PATH`` within that EXID. Luckily there is a ``code-summary``\ncommand which will give you the data you need to find into the ``code-static`` and\n``code-emulated`` commands.\n \nGet a Summary of the Code Analysis:\n\n.. code-block:: bash\n\n $ centrifuge report --ufid= code-summary\n\nWhen looking at the results above from the ``code-summary`` command you need to\nrecord the ``exid`` and ``path`` (*NOT* ``fullPath``), to feed into the next two commands. \n\nGet static code analysis results:\n\n.. code-block:: bash\n\n $ centrifuge report --ufid= code-static --exid= --path=\n\n\nGet emulated code analysis results:\n\n.. code-block:: bash\n\n $ centrifuge report --ufid= code-emulated --exid= --path=\n\n\nDeleting Firmware Uploads\n-------------------------\n\nDeleting a previously uploaded firmware is an unrecoverable action. Unlike the\nweb interface the command line interface will not prompt you if you are sure.\nSo use this command carefully. \n\nTo delete a firmware:\n\n.. code-block:: bash\n\n $ centrifuge report --ufid= delete\n\n\nChecking Against a Policy YAML\n------------------------------\n\nYou can check that the results of a firmware analysis are within compliance criteria\ndefined in a yaml file. Example usage:\n\n.. code-block:: bash\n\n $ centrifuge report --ufid= check-policy --policy-yaml=\n\n\n\nMore information on this feature can be found in the `Policy Documentation`_.\n\n.. _Policy Documentation: docs/POLICY.md\n\nGathering Upload Statistics\n---------------------------\n\nFor deployments that support multiple organizations or business units we have the ability\nto gather useful statistics for the uploaded firmware based on organization. One command \nwill simply give you the total number of firmware that each organization uploaded, the other\ncommand will give more detailed information about each upload.\n\nTo summarize multiple organizations you need to be an Administrator. If these commands are\nrun by a non-admin, instead of summarizing multiple organizations it will summarize the users\nwithin that organization.\n\nTo get upload count statistics:\n\n.. code-block:: bash\n\n $ centrifuge reports stats-summary\n\nTo get detailed upload statistics:\n\n.. code-block:: bash\n\n $ centrifuge reports stats-detailed\n\nListing Centrifuge Supported Component Detectors\n------------------------------------------------\n\nCentrifuge uses binary heuristic detection to identify 3rd party components in firmware,\nand also maps known vulnerabilities (CVEs) to those components. New components and CVEs\nare added regularly to Centrifuge.\n\nTo get a list of the supported components and a count of CVEs for each component:\n\n.. code-block:: bash\n\n $ centrifuge supported-components\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://www.refirmlabs.com", "keywords": "firmware,security,centrifuge", "license": "", "maintainer": "", "maintainer_email": "", "name": "centrifuge-cli", "package_url": "https://pypi.org/project/centrifuge-cli/", "platform": "", "project_url": "https://pypi.org/project/centrifuge-cli/", "project_urls": { "Homepage": "https://www.refirmlabs.com", "Repository": "https://github.com/ReFirmLabs/centrifuge-cli" }, "release_url": "https://pypi.org/project/centrifuge-cli/0.9.1/", "requires_dist": [ "requests (>=2.22,<3.0)", "Click (>=7.0,<8.0)", "pandas (>=1,<2)", "dateparser (>=0.7.2,<0.8.0)", "pyyaml (>=5.3.1,<6.0.0)", "chevron (>=0.13.1,<0.14.0)" ], "requires_python": ">=3.9,<4.0", "summary": "A command line utility for interacting with the Centrifuge Firmware Analysis Platform's REST API.", "version": "0.9.1", "yanked": false, "yanked_reason": null }, "last_serial": 13059958, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "2ca72f2ab9e4a6f00f646516a6fc693d", "sha256": "202ae246cd8846d82fec12e9272d5992c08f479f686c5d11f8c66fb322ff7c5f" }, "downloads": -1, "filename": "centrifuge_cli-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2ca72f2ab9e4a6f00f646516a6fc693d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 4888, "upload_time": "2019-08-30T03:25:45", "upload_time_iso_8601": "2019-08-30T03:25:45.314585Z", "url": "https://files.pythonhosted.org/packages/a0/f4/f1d72d356977154ff59285017f3998df44694e7383ec9b665937d6157610/centrifuge_cli-0.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e470d903537e128377cf00b340e9098e", "sha256": "64658d0fb524c7e23b6cf3c8b8c4a13c8362d67cb90bc8b9b9a83f5dab917ea9" }, "downloads": -1, "filename": "centrifuge-cli-0.1.0.tar.gz", "has_sig": false, "md5_digest": "e470d903537e128377cf00b340e9098e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 4295, "upload_time": "2019-08-30T03:25:43", "upload_time_iso_8601": "2019-08-30T03:25:43.103315Z", "url": "https://files.pythonhosted.org/packages/71/51/9e56442c1286d7940a13323a5493977c9b6f1ac93bc60753893aaab2572c/centrifuge-cli-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "54b4f32e8d69d9bb4d0dcbcaaa52e1c0", "sha256": "2f51c5a7d6b3a8565b82523960c118c1edfbaa5296188148a10633892a3ea31e" }, "downloads": -1, "filename": "centrifuge_cli-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "54b4f32e8d69d9bb4d0dcbcaaa52e1c0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 5755, "upload_time": "2019-08-30T03:43:52", "upload_time_iso_8601": "2019-08-30T03:43:52.570797Z", "url": "https://files.pythonhosted.org/packages/5b/e9/e30c3a31c93d3f534f4cf7d08d25b778dc561bc12ca9068106148abc9f21/centrifuge_cli-0.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "360f2e81513ab7bb5d578049d271236f", "sha256": "88a94554eb57c43352148d4fe5f7ae5a74214367cdb5a390607ba3eff9b9d1f2" }, "downloads": -1, "filename": "centrifuge-cli-0.1.1.tar.gz", "has_sig": false, "md5_digest": "360f2e81513ab7bb5d578049d271236f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 5360, "upload_time": "2019-08-30T03:43:51", "upload_time_iso_8601": "2019-08-30T03:43:51.197687Z", "url": "https://files.pythonhosted.org/packages/1c/52/e8ade12ba5fc3c908818ce699cd92707034cede5ae34cb5b55c26d5ccc33/centrifuge-cli-0.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "80fbafe4c40617ef8cd57822fff8a005", "sha256": "84bb9207ad3ef917ba9901ecc4412f0eb7a62aba40ea3ae57a484947d29d9bc4" }, "downloads": -1, "filename": "centrifuge_cli-0.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "80fbafe4c40617ef8cd57822fff8a005", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 6817, "upload_time": "2019-08-30T05:17:49", "upload_time_iso_8601": "2019-08-30T05:17:49.110783Z", "url": "https://files.pythonhosted.org/packages/95/2d/acf50e4729e97c1da3b56be0a5bd9135f555c7888b7a8a4c8901a6fad20c/centrifuge_cli-0.1.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "afcfbf739090cb79bd6da8a1227fb2bf", "sha256": "65e7d4d71a1aa2a2127c8f18e6f4e997d0f1b9505cc726c7a403ad774fa9a1d0" }, "downloads": -1, "filename": "centrifuge-cli-0.1.3.tar.gz", "has_sig": false, "md5_digest": "afcfbf739090cb79bd6da8a1227fb2bf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 6673, "upload_time": "2019-08-30T05:17:47", "upload_time_iso_8601": "2019-08-30T05:17:47.491729Z", "url": "https://files.pythonhosted.org/packages/44/77/e521ab348644b89a058a4049daf71fe0f5cbaf8503724f23c7d3f6f572ab/centrifuge-cli-0.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "39ed4f53e83be3674abede1144a4cc9d", "sha256": "830476f69d0d482903088141d361cd476b2d92e1d976d46167bdbe4779b13ca4" }, "downloads": -1, "filename": "centrifuge_cli-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "39ed4f53e83be3674abede1144a4cc9d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 8055, "upload_time": "2019-10-24T15:10:05", "upload_time_iso_8601": "2019-10-24T15:10:05.576185Z", "url": "https://files.pythonhosted.org/packages/f5/e2/614db43b985f814cbd91296c863b7995ed08b23a5c63e73e2baa9a285703/centrifuge_cli-0.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb98966ed5939892c1ab460165bf742a", "sha256": "61d21e75b33789d6ec5345ac3f6c3fd04178b6d6a0b43b13373d788a1dbaf981" }, "downloads": -1, "filename": "centrifuge-cli-0.2.0.tar.gz", "has_sig": false, "md5_digest": "bb98966ed5939892c1ab460165bf742a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 8321, "upload_time": "2019-10-24T15:10:04", "upload_time_iso_8601": "2019-10-24T15:10:04.325978Z", "url": "https://files.pythonhosted.org/packages/52/68/088e0fd53ba10667db45603a34b3b417e87b59da7fb324f1393ba3ede3bd/centrifuge-cli-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "5c5efd5c4911de0dc03664d94da4d492", "sha256": "56d5f6744178467c67fb77268b3e04c19bacca6c6bfb291e940535015c8cec33" }, "downloads": -1, "filename": "centrifuge_cli-0.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "5c5efd5c4911de0dc03664d94da4d492", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 8284, "upload_time": "2020-02-07T17:28:36", "upload_time_iso_8601": "2020-02-07T17:28:36.746144Z", "url": "https://files.pythonhosted.org/packages/c9/d3/ca5701db8ef7fa21bbeabccd4513597f079c85fcc496916e92fe995e8091/centrifuge_cli-0.2.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e770fb1f449087dc35e10c56020c56e", "sha256": "8ee22b2ce25c79c0cbbcab6e641c9834757d39b5092534c8984bc3bd433145b3" }, "downloads": -1, "filename": "centrifuge-cli-0.2.1.tar.gz", "has_sig": false, "md5_digest": "8e770fb1f449087dc35e10c56020c56e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 8613, "upload_time": "2020-02-07T17:28:35", "upload_time_iso_8601": "2020-02-07T17:28:35.141589Z", "url": "https://files.pythonhosted.org/packages/12/89/8d6d0879a13f769b84af99e362883e4bec6f0e4f743ebbb9e6d7eccd9b34/centrifuge-cli-0.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "60d1bcd0fb3abaefb771faf91cf1098a", "sha256": "d8d3c69f698864c461183e3c8127adbcb28fb562ed97b569c32ad518c1da0c27" }, "downloads": -1, "filename": "centrifuge_cli-0.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "60d1bcd0fb3abaefb771faf91cf1098a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 8452, "upload_time": "2020-03-12T03:28:47", "upload_time_iso_8601": "2020-03-12T03:28:47.953434Z", "url": "https://files.pythonhosted.org/packages/1a/a6/b116de6a1985dce737187c141dd333cde36f2757522b2974de820e13b637/centrifuge_cli-0.2.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c75400928c616048157f93d0c152daf", "sha256": "3a4cf56c237c56be5463ba588b44ab7b46a5c4133a7ddf54a14041a53e971221" }, "downloads": -1, "filename": "centrifuge-cli-0.2.2.tar.gz", "has_sig": false, "md5_digest": "4c75400928c616048157f93d0c152daf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 8772, "upload_time": "2020-03-12T03:28:46", "upload_time_iso_8601": "2020-03-12T03:28:46.564436Z", "url": "https://files.pythonhosted.org/packages/b4/3c/0f30135e50f05d061a86fed84e6bbfa50725f7532c8a6c31696c170cdd41/centrifuge-cli-0.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "9bada62e37548ac6265576b21de93dba", "sha256": "e39d80137ac1c05bb45f4e4e7aae1d006fe9d2d2b0e3273ee6346d0ae2573ed9" }, "downloads": -1, "filename": "centrifuge_cli-0.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9bada62e37548ac6265576b21de93dba", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 8526, "upload_time": "2020-03-28T05:47:20", "upload_time_iso_8601": "2020-03-28T05:47:20.236605Z", "url": "https://files.pythonhosted.org/packages/c0/2e/e5cde4c5d5832e43732d6425f039971ef3430dd1ff6ff7db5d49c3530a81/centrifuge_cli-0.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2649bd63075ab2b52e364e4af436aa79", "sha256": "cd00182d4e752fe90c84a9bb949ff515be125de768ba9fe18131a945468ed783" }, "downloads": -1, "filename": "centrifuge-cli-0.3.0.tar.gz", "has_sig": false, "md5_digest": "2649bd63075ab2b52e364e4af436aa79", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 8853, "upload_time": "2020-03-28T05:47:18", "upload_time_iso_8601": "2020-03-28T05:47:18.746999Z", "url": "https://files.pythonhosted.org/packages/5c/d7/b0512832148144130ad336940c54473e7f7586802e980dcb94840fc3bb0a/centrifuge-cli-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "44d878f46c62e903eb9b1c07c089625f", "sha256": "eb2e82d2374b53974962a417a02057babb6c4ac6abeeceb8dd48e4f59444613f" }, "downloads": -1, "filename": "centrifuge_cli-0.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "44d878f46c62e903eb9b1c07c089625f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 8670, "upload_time": "2020-04-03T20:51:06", "upload_time_iso_8601": "2020-04-03T20:51:06.803283Z", "url": "https://files.pythonhosted.org/packages/92/36/62f1c598aac14ae6775e65dc6242af40008e7272bdee4bded5b06a1914c7/centrifuge_cli-0.3.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "304a5b129ea1d7ce9f1ad414a7c78ac1", "sha256": "db24876500445a34ea7fabfe0895af817ae301a49de8d93b982809b3e67f6919" }, "downloads": -1, "filename": "centrifuge-cli-0.3.1.tar.gz", "has_sig": false, "md5_digest": "304a5b129ea1d7ce9f1ad414a7c78ac1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 9004, "upload_time": "2020-04-03T20:51:05", "upload_time_iso_8601": "2020-04-03T20:51:05.763726Z", "url": "https://files.pythonhosted.org/packages/1c/dd/d7e98f5df1556d0bb34d58edded3d038f9e146355eb05ba56eb747fdf6fc/centrifuge-cli-0.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "f43a76621da5f75bfaab9c6648a866c5", "sha256": "bdcb7cdbd87bc9bc9cf4b313985989a4e5b424018ba7236768e382645b0cc39d" }, "downloads": -1, "filename": "centrifuge_cli-0.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f43a76621da5f75bfaab9c6648a866c5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 11917, "upload_time": "2020-04-07T19:38:20", "upload_time_iso_8601": "2020-04-07T19:38:20.105520Z", "url": "https://files.pythonhosted.org/packages/7a/53/52dc11e33904335e44d9fc21e7d3b6747eb93deb94a19f8989292341862d/centrifuge_cli-0.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "acb1f9cc9b83cc4a6f2a4f5ee4a7af0c", "sha256": "2501d6697dc875c379be4d1707df8b3c25a9971ed1590384d9c8d4628b14a320" }, "downloads": -1, "filename": "centrifuge-cli-0.4.0.tar.gz", "has_sig": false, "md5_digest": "acb1f9cc9b83cc4a6f2a4f5ee4a7af0c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 13421, "upload_time": "2020-04-07T19:38:18", "upload_time_iso_8601": "2020-04-07T19:38:18.679318Z", "url": "https://files.pythonhosted.org/packages/aa/a8/54f553d439923812b8272f2f2a5624a7bb9c8bf4be591091be6ee82d6e2b/centrifuge-cli-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "fd68692424a49301546ebfcb2a40e047", "sha256": "c263665da478d9d71ed048cdbcf6c3b22db738a8a0a2614238a42b7cf379344f" }, "downloads": -1, "filename": "centrifuge_cli-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "fd68692424a49301546ebfcb2a40e047", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 13259, "upload_time": "2020-04-18T01:50:02", "upload_time_iso_8601": "2020-04-18T01:50:02.139909Z", "url": "https://files.pythonhosted.org/packages/40/b6/f72b80116d2950ce2370f50527efad71a55cd65a1a1bf3739820ff31b00e/centrifuge_cli-0.5.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "814d90665bd56c4889c6995864ed6d2c", "sha256": "8af23dcbcd76b6067ee9053fa67d32c2f54a303b3803ed3aa482289f7968c6b4" }, "downloads": -1, "filename": "centrifuge-cli-0.5.0.tar.gz", "has_sig": false, "md5_digest": "814d90665bd56c4889c6995864ed6d2c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 14684, "upload_time": "2020-04-18T01:50:01", "upload_time_iso_8601": "2020-04-18T01:50:01.025376Z", "url": "https://files.pythonhosted.org/packages/07/45/7643483e60dc20fdf8e69644034f3f5b671848f3187dd0dfefc5c17b03b9/centrifuge-cli-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "8e63efda0a6f889a93a6abb736aa92a8", "sha256": "967a713817b5609d47de6e67006d3ef200c277ca2957ba7297d6b8d516727aae" }, "downloads": -1, "filename": "centrifuge_cli-0.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8e63efda0a6f889a93a6abb736aa92a8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 14166, "upload_time": "2020-06-17T15:29:25", "upload_time_iso_8601": "2020-06-17T15:29:25.722265Z", "url": "https://files.pythonhosted.org/packages/bf/f1/995568ee77a038aa47323e32636ee59c4d033899e9f3712d83446543cb6c/centrifuge_cli-0.6.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4b903e2c53c83b421342ea2f13168bf6", "sha256": "a094646ff121d938bb96016a4f287b534983985787291ab8f8fe4abd04334df9" }, "downloads": -1, "filename": "centrifuge-cli-0.6.0.tar.gz", "has_sig": false, "md5_digest": "4b903e2c53c83b421342ea2f13168bf6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 15583, "upload_time": "2020-06-17T15:29:24", "upload_time_iso_8601": "2020-06-17T15:29:24.638358Z", "url": "https://files.pythonhosted.org/packages/3c/84/bb87ef406bead709f1b0385dba4d186b869d1c6958d64e2c7302bb684f59/centrifuge-cli-0.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "4653de4fe1875d100c07ecba88cf4179", "sha256": "33e03f7c9407e8365f6cc11523e70742f398449aa71b279ed104e442e7855254" }, "downloads": -1, "filename": "centrifuge_cli-0.6.1-py3-none-any.whl", "has_sig": false, "md5_digest": "4653de4fe1875d100c07ecba88cf4179", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 14517, "upload_time": "2020-06-30T18:49:25", "upload_time_iso_8601": "2020-06-30T18:49:25.819238Z", "url": "https://files.pythonhosted.org/packages/69/d5/9331eaef44ab31bc95938796cd158b038ecc188b9d8013d85481e1b9d738/centrifuge_cli-0.6.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ea3542274354560f31818fd0dbbd0a0", "sha256": "b3b9f5d6c2569bf6b703a530e9008c0016cbfb410ccbf5e418781519b9e7eaac" }, "downloads": -1, "filename": "centrifuge-cli-0.6.1.tar.gz", "has_sig": false, "md5_digest": "3ea3542274354560f31818fd0dbbd0a0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 16106, "upload_time": "2020-06-30T18:49:24", "upload_time_iso_8601": "2020-06-30T18:49:24.533914Z", "url": "https://files.pythonhosted.org/packages/eb/60/1f6ed56a294da38f94d1753c02232663e2e7f054799ec65e35a161ff1bae/centrifuge-cli-0.6.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "a2bc861c27e15d6e1e1c61ca31378b84", "sha256": "03e043796141a8b2e5d762afe213c5f85d528fb31c6ec65231fbec001ae673b8" }, "downloads": -1, "filename": "centrifuge_cli-0.6.2-py3-none-any.whl", "has_sig": false, "md5_digest": "a2bc861c27e15d6e1e1c61ca31378b84", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 14765, "upload_time": "2020-08-05T06:02:53", "upload_time_iso_8601": "2020-08-05T06:02:53.546677Z", "url": "https://files.pythonhosted.org/packages/df/22/9c50b5abbf661b56c9180208413accd071fec100f12dadfc7181c19af8cc/centrifuge_cli-0.6.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5124e611271b17bc78fb48085cf16ca4", "sha256": "14c2666e0e96218e3add87241e972922e2c47fc49a20cfdf011fbe5858899cdf" }, "downloads": -1, "filename": "centrifuge-cli-0.6.2.tar.gz", "has_sig": false, "md5_digest": "5124e611271b17bc78fb48085cf16ca4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 16398, "upload_time": "2020-08-05T06:02:52", "upload_time_iso_8601": "2020-08-05T06:02:52.057018Z", "url": "https://files.pythonhosted.org/packages/be/91/989ec4d8c5d038e106a245081481a336f8b5a6485e1fe7e691406200a407/centrifuge-cli-0.6.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "ca0dbc8742cc249cfe5244631ae4c216", "sha256": "cae0f1e212ac2cc000a7cbe31670d88c6196fa84c211a4303a7513d32cb0fe2c" }, "downloads": -1, "filename": "centrifuge_cli-0.6.3-py3-none-any.whl", "has_sig": false, "md5_digest": "ca0dbc8742cc249cfe5244631ae4c216", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 14765, "upload_time": "2020-08-07T03:50:22", "upload_time_iso_8601": "2020-08-07T03:50:22.428367Z", "url": "https://files.pythonhosted.org/packages/fa/81/c768e077acd0f7d5311a039b1c9ab855dab508a65ee37d6871fc938af418/centrifuge_cli-0.6.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa9f114bcabc00b88790e3161c650937", "sha256": "bbaab3a6081b09f35c756488891d6877d7e365fd6a074a2f8086abf65935e33e" }, "downloads": -1, "filename": "centrifuge-cli-0.6.3.tar.gz", "has_sig": false, "md5_digest": "fa9f114bcabc00b88790e3161c650937", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 16405, "upload_time": "2020-08-07T03:50:21", "upload_time_iso_8601": "2020-08-07T03:50:21.130796Z", "url": "https://files.pythonhosted.org/packages/e4/4d/1ffbe48a1f725e0155e30c69b59704ecbc4c8b4539a3216d275e71ca41d0/centrifuge-cli-0.6.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "e88e9149a713fc81d06d7c3690ad836c", "sha256": "f8aa4249ef77adf0187d4bd1409100d37df618dc9b2ec094d5dabcff12e267d3" }, "downloads": -1, "filename": "centrifuge_cli-0.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e88e9149a713fc81d06d7c3690ad836c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 15202, "upload_time": "2020-09-25T04:49:56", "upload_time_iso_8601": "2020-09-25T04:49:56.467588Z", "url": "https://files.pythonhosted.org/packages/d9/a9/e8f6ac9794839bfcbac6a47a9893d975be7244b682fc188f16e8ebdaba7d/centrifuge_cli-0.7.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f59e76a5f7e0dc82149733a0a3fc1d1e", "sha256": "bf0f7816131962a46afc924715557861ccb9a90752497ff2c9db01a26b43cbb8" }, "downloads": -1, "filename": "centrifuge-cli-0.7.0.tar.gz", "has_sig": false, "md5_digest": "f59e76a5f7e0dc82149733a0a3fc1d1e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 17012, "upload_time": "2020-09-25T04:49:55", "upload_time_iso_8601": "2020-09-25T04:49:55.131019Z", "url": "https://files.pythonhosted.org/packages/c0/84/418a5d4d11025e3580ff032b1f9e55a743c1b7ec353231b851a01c3e6911/centrifuge-cli-0.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "3dd42fd990147d2921a1ff19b81aa25b", "sha256": "2152831f27a9b8d60ada73c694ca555556899454f6e39d399eed5d0d9d739096" }, "downloads": -1, "filename": "centrifuge_cli-0.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "3dd42fd990147d2921a1ff19b81aa25b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 15467, "upload_time": "2020-10-14T17:03:43", "upload_time_iso_8601": "2020-10-14T17:03:43.082949Z", "url": "https://files.pythonhosted.org/packages/d5/7a/b9bf3c5500fa6ef340faaff48fa6b567ac2ef1b101fe62d224e3fdc0ed99/centrifuge_cli-0.8.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "588ed4100ce1c4bbfbcf1341641f3c7c", "sha256": "724e7b5e8b057df489ea0b8dad3e90e4e42fac7c2aad0f3f2ed91deae2f4ae56" }, "downloads": -1, "filename": "centrifuge-cli-0.8.0.tar.gz", "has_sig": false, "md5_digest": "588ed4100ce1c4bbfbcf1341641f3c7c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 17277, "upload_time": "2020-10-14T17:03:40", "upload_time_iso_8601": "2020-10-14T17:03:40.687098Z", "url": "https://files.pythonhosted.org/packages/f3/7c/49e4c7f5bd0e15aeb26449befde7e6597951867657200873bacee1348e60/centrifuge-cli-0.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "a0cc4c57979da5620add517fddaa4e1f", "sha256": "c438d91e88a10167eb2f9afdeb351522b5fa55fb83bf3e1ae4938e6ee820e074" }, "downloads": -1, "filename": "centrifuge_cli-0.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "a0cc4c57979da5620add517fddaa4e1f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.9,<4.0", "size": 15462, "upload_time": "2021-12-13T23:08:10", "upload_time_iso_8601": "2021-12-13T23:08:10.162519Z", "url": "https://files.pythonhosted.org/packages/0e/3a/b598442ed6186ab85cc84bbcadc1cf7eb558e26c702fff7db28297e7c671/centrifuge_cli-0.9.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "547e7e480a9d57f65080d84b153d7ae6", "sha256": "f5cafa7cacddf540d0c5f3459b29615212831803d1a168cd40ff919cb59c496e" }, "downloads": -1, "filename": "centrifuge-cli-0.9.0.tar.gz", "has_sig": false, "md5_digest": "547e7e480a9d57f65080d84b153d7ae6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.9,<4.0", "size": 17268, "upload_time": "2021-12-13T23:08:08", "upload_time_iso_8601": "2021-12-13T23:08:08.385067Z", "url": "https://files.pythonhosted.org/packages/bd/de/e8fdf8786f38850905e1b9ea5785a1e99aea3926f742625365e2b3c58e1e/centrifuge-cli-0.9.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "b2a4a87c545a83b5b0624265c4be46ea", "sha256": "fc98c4243cb632608d8605c63352d0b2a0ecbf933f6030ec26eaf70f3e4ab1f1" }, "downloads": -1, "filename": "centrifuge_cli-0.9.1-py3-none-any.whl", "has_sig": false, "md5_digest": "b2a4a87c545a83b5b0624265c4be46ea", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.9,<4.0", "size": 15460, "upload_time": "2022-03-02T17:32:16", "upload_time_iso_8601": "2022-03-02T17:32:16.540676Z", "url": "https://files.pythonhosted.org/packages/a5/0f/b5afcee589557bd050bf910945c08d2d0682cc6b143ea89acef60f56556b/centrifuge_cli-0.9.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "11d63c4a25d746cc33a9ca331292f34e", "sha256": "f7fe9663e08361fc5a625706b5c0144a8d0594373069a46e016208522f970be3" }, "downloads": -1, "filename": "centrifuge-cli-0.9.1.tar.gz", "has_sig": false, "md5_digest": "11d63c4a25d746cc33a9ca331292f34e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.9,<4.0", "size": 17264, "upload_time": "2022-03-02T17:32:14", "upload_time_iso_8601": "2022-03-02T17:32:14.499624Z", "url": "https://files.pythonhosted.org/packages/2c/cd/fb2e2e337ae4729e65ce36cd85f18e6873e7926c4c1d74e6b2801daea378/centrifuge-cli-0.9.1.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b2a4a87c545a83b5b0624265c4be46ea", "sha256": "fc98c4243cb632608d8605c63352d0b2a0ecbf933f6030ec26eaf70f3e4ab1f1" }, "downloads": -1, "filename": "centrifuge_cli-0.9.1-py3-none-any.whl", "has_sig": false, "md5_digest": "b2a4a87c545a83b5b0624265c4be46ea", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.9,<4.0", "size": 15460, "upload_time": "2022-03-02T17:32:16", "upload_time_iso_8601": "2022-03-02T17:32:16.540676Z", "url": "https://files.pythonhosted.org/packages/a5/0f/b5afcee589557bd050bf910945c08d2d0682cc6b143ea89acef60f56556b/centrifuge_cli-0.9.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "11d63c4a25d746cc33a9ca331292f34e", "sha256": "f7fe9663e08361fc5a625706b5c0144a8d0594373069a46e016208522f970be3" }, "downloads": -1, "filename": "centrifuge-cli-0.9.1.tar.gz", "has_sig": false, "md5_digest": "11d63c4a25d746cc33a9ca331292f34e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.9,<4.0", "size": 17264, "upload_time": "2022-03-02T17:32:14", "upload_time_iso_8601": "2022-03-02T17:32:14.499624Z", "url": "https://files.pythonhosted.org/packages/2c/cd/fb2e2e337ae4729e65ce36cd85f18e6873e7926c4c1d74e6b2801daea378/centrifuge-cli-0.9.1.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }