{
"info": {
"author": "Chris Allison",
"author_email": "chris.allison@hivehome.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
],
"description": "# Centrica Chaim AWS Accounts CLI\nThis is the code for the command line utility `cca`.\n\ncca is a re-imagining of the chaim cli using the click parameter parsing\npython module.\n\n\n* [Install](#install)\n * [Linux](#linux)\n * [Mac OSX](#macosx)\n* [Upgrade](#upgrade)\n* [cca](#cca)\n* [cca sub-commands](#ccasubcommands)\n * [account](#ccaaccount)\n * [delete](#ccadelete)\n * [gui](#ccagui)\n * [gso](#ccagso)\n * [init](#ccainit)\n * [list](#ccalist)\n * [listall](#ccalistall)\n * [listpark](#ccalistpark)\n * [park](#ccapark)\n * [renew](#ccarenew)\n * [unpark](#ccaunpark)\n * [url](#ccaurl)\n * [version](#ccaversion)\n\n\n## [Install](#contents)\nThe chaim-cli is a python 3 application. It is recommended to install into your\nlocal, users, python packages using pip. If this is your first local python\npackage then you will need to adjust your path so that the shell can find it.\n```\necho 'export PATH=${HOME}/.local/bin:${PATH}' >>${HOME}/.bashrc\n```\n\n\n### [Linux](#contents)\nThese instructions are for ubuntu and it's derivatives. For other\ndistributions the process is similiar, though probably with different package\nnames. You will need to have a version of python3 installed and a pip program\nthat is python3 aware.\n\n#### Install python3\nFor ubuntu pre 18.04 you will need to install python3 and it's associated pip\napplication. The easiest way to do this is:\n\n```\nsudo apt install python3-pip\n```\nwhich will pull in everything required.\n\n#### Install cca\nTo install the chaim-cli:\n```\npip3 install chaim-cli --upgrade --user --no-cache-dir\n```\n\n#### Update PATH\nOnce installed you will want to add `$HOME/.local/bin` to your path, if it\nisn't already there:\n```\necho 'export PATH=${HOME}/.local/bin:${PATH}' >>${HOME}/.bashrc\n```\n\n#### Testing\nTo check that all went well:\n```\ncca version\n```\nShould give you the current version number of the chaim-cli.\n\n\n### [Mac OSX](#contents)\n#### Install python3\nRecently the folks that manage homebrew changed the default python, which\nconflicts with the python supplied by the OS. See this home brew\n[discussion](https://discourse.brew.sh/t/brew-install-python3-fails/1756/8).\nSo, to get python3 (and keep python2) you now need to do:\n```\nbrew upgrade python\nbrew install python2\n```\nwhich will install python3 and the latest released version of python2.\n\n#### Install cca\nTo install the chaim-cli:\n```\npip install chaim-cli --upgrade --user --no-cache-dir\n```\n\n#### Update PATH\nOnce installed you will want to add `$HOME/Library/.Python/3.7/bin` to your path, if it\nisn't already there (adjust the version to suit your circumstances):\n```\necho 'export PATH=${HOME}/Library/Python/3.7/bin:${PATH}' >>${HOME}/.bashrc\n```\n\n#### Testing\nTo check that all went well:\n```\ncca version\n```\nShould give you the current version number of the chaim-cli.\n\n\n## [Upgrade](#contents)\n```\npip3 install chaim-cli --upgrade --user\n```\n\n\n## [cca](#contents)\n\n```\n$ cca --help\nUsage: cca [OPTIONS] COMMAND [ARGS]...\n\nOptions:\n --help Show this message and exit.\n\nCommands:\n account Retrieve credentials for an account\n delete delete an accounts credentials\n gso obtains a console session url, logs out of...\n gui obtains a console session url and opens a...\n init Initialises the application for use with...\n list list all registered accounts and their expiry...\n listall list all accounts available to chaim\n listpark list of parked accounts\n park removes account from credentials and parks it...\n renew Renews all account credentials\n setautorenew sets the percentage of time remaining before...\n unpark returns an account from parking to...\n url obtains a console session url and copies it...\n version\n```\n\n\n### [cca sub-commands](#contents)\n\n\n#### [account](#contents)\n```\n$ cca account --help\nUsage: cca account [OPTIONS] ACCOUNT\n\n Retrieve credentials for ACCOUNT account\n\nOptions:\n -r, --role TEXT optional the role to assume for this account\n default: rro\n -d, --duration INTEGER optional duration must be between 1-12 or 900-43,200\n default 1\n -a, --alias TEXT optional alias for the account name, to be used as\n the profile name\n -D, --default optional set this account to be the default account\n profile to use\n -R, --region TEXT optional region\n -T, --terrible Add support for Terraform/Ansible to the credentials\n file\n --help Show this message and exit.\n```\nThe `-T|--terrible` switch copies the `aws_session_token` key to the `aws_security_token` key.\nThis ensures that products such as Ansible and Terraform which still use the `aws_security_token`\nwill continue to work.\n\n\n#### [delete](#contents)\nDelete credentials for the named account(s).\n\n\n#### [gui](#contents)\nThis command generates a console session url and opens a browser window to it.\nThe credentials will be automatically renewed first.\n\n\n#### [gso](#contents)\nThis command generates a console session url, attempts to logout of any current\nsession, and opens a browser window to the url.\nThe credentials will be automatically renewed first.\n\nNote: There doesn't seem to be any way to access the browser tab with AWS\nrunning in it, so this process first opens a new tab to issue the logout\ncommand, then a 2nd new tab to log you into the new account. This will leave\nyou with 2 extra tabs, sorry.\n\n\n#### [init](#contents)\nInitialises the application with a user token obtained from Slack. Either\nsupply the base64 encoded info from Slack as a parameter, or use the command\nbare to be asked the pertinent questions.\n```\ncca init YXBpPTh4eHNDczJmV4cGly...JlZ2lvbj1ldS13ZXN0LTE=\ncca has been re-initialised.\nYour token will expire in 29 days, 21 hours, 19 minutes and 52 seconds.\n```\nor\n```\ncca init\napi (8xxssu8fs7):\nusername (chris.allison):\nusertoken: ad2f05ed-78d7-xxxx-DDDD-8d90c64f9473\ntokenexpires: 1536139015\nstage (prod):\nregion (eu-west-1):\ncca has been re-initialised.\nYour token will expire in 29 days, 21 hours, 18 minutes and 58 seconds.\n```\n\n\n#### [list](#contents)\nCurrent list of accounts that are managed by cca and their expiry times.\nThis also shows which is the default account, and the percentage of time left.\n\n\n#### [listall](#contents)\nFull list of all available accounts.\n\n\n#### [listpark](#contents)\nList accounts that have been parked.\n```\n$ cca listpark\nhbetaus\nhprodus\nhprod\nhbeta\nhdev7\n```\n\n\n#### [park](#contents)\nRemove an account from credentials and park it and its definition for later\nuse.\n```\n$ cca park extbackup\nextbackup account has been parked\n```\n\n\n#### [renew](#contents)\nThis will renew all managed accounts.\n```\n$ cca renew\nignoring awsbilling as it is not managed by cca\naccount: secadmin-prod, alias: secadmin-prod, role: apu, duration: 4\nUpdated section secadmin-prod with new keys\nupdated default account\nretrieval took 5 seconds.\naccount: chsre-dev, alias: chsre-dev, role: apu, duration: 4\nUpdated section chsre-dev with new keys\nretrieval took 6 seconds.\n```\n\n\n#### [unpark](#contents)\nRe-enable an account and automatically renew its session so that it is\navailable for immediate use.\n```\n$ cca unpark hdev7\naccount: honeycomb-dev7, alias: hdev7, role: mpu, duration: 1\nUpdated section honeycomb-dev7 with new keys\nretrieval took 7 seconds.\n```\n\n\n#### [url](#contents)\nThis command generates a console session url and copies it to the clipboard.\nThe credentials will be automatically renewed first.\n\n\n\n#### [version](#contents)\nShow the current version of this application.\n\n[modeline]: # ( vim: set ft=markdown tw=74 fenc=utf-8 spell spl=en_gb mousemodel=popup: )\n\n\n",
"description_content_type": "text/markdown",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/ConnectedHomes/chaim/client",
"keywords": "",
"license": "",
"maintainer": "",
"maintainer_email": "",
"name": "chaim-cli",
"package_url": "https://pypi.org/project/chaim-cli/",
"platform": "",
"project_url": "https://pypi.org/project/chaim-cli/",
"project_urls": {
"Homepage": "https://github.com/ConnectedHomes/chaim/client"
},
"release_url": "https://pypi.org/project/chaim-cli/2.4.4/",
"requires_dist": [
"click",
"requests",
"pyperclip",
"chardet",
"certifi"
],
"requires_python": ">=3",
"summary": "Centrica Chaim AWS Accounts",
"version": "2.4.4"
},
"last_serial": 5895967,
"releases": {
"2.0.10": [
{
"comment_text": "",
"digests": {
"md5": "178af15c6036007e6e233b97669441f2",
"sha256": "2e22ca92d3406094702d6b2d1cb09cfe62e3c85d57c7b7ad85b9d403165d005b"
},
"downloads": -1,
"filename": "chaim_cli-2.0.10-py3-none-any.whl",
"has_sig": false,
"md5_digest": "178af15c6036007e6e233b97669441f2",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3",
"size": 13886,
"upload_time": "2019-01-11T09:55:07",
"url": "https://files.pythonhosted.org/packages/c7/af/1d0a97e1651224d22e2a366c3a2fe0432f8a3679b11f8b027fd219f6af9f/chaim_cli-2.0.10-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "65e683148def163a35f3aee1a4dd2bda",
"sha256": "aba3436de43456357d3bffce4535cccfcf214598263cc2841d1d1577a6fa2a81"
},
"downloads": -1,
"filename": "chaim-cli-2.0.10.tar.gz",
"has_sig": false,
"md5_digest": "65e683148def163a35f3aee1a4dd2bda",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3",
"size": 11517,
"upload_time": "2019-01-11T09:55:09",
"url": "https://files.pythonhosted.org/packages/e0/41/df37facc4962445c3cda7cea7eee3fdb7e61c6b9536a79379d4f36a8698e/chaim-cli-2.0.10.tar.gz"
}
],
"2.0.11": [
{
"comment_text": "",
"digests": {
"md5": "1c32df5f12320ac63b0f270f5e06e364",
"sha256": "6079afc4d0e69fa6dbc8f4f03c0c889d40e12bb76303fa36fe824f27a290b57b"
},
"downloads": -1,
"filename": "chaim_cli-2.0.11-py3-none-any.whl",
"has_sig": false,
"md5_digest": "1c32df5f12320ac63b0f270f5e06e364",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3",
"size": 17714,
"upload_time": "2019-01-11T10:17:08",
"url": "https://files.pythonhosted.org/packages/8a/e1/ddb319db0bea92966fb9433292280f1814b548431c7b740d2b8a1b668f44/chaim_cli-2.0.11-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e032543abecc4025f992cf3cc5c48eb5",
"sha256": "2a61947ad2f8a05f8b2680e92ad81d4857614cab7ac6dc1fd0f25477ac2a4c03"
},
"downloads": -1,
"filename": "chaim-cli-2.0.11.tar.gz",
"has_sig": false,
"md5_digest": "e032543abecc4025f992cf3cc5c48eb5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3",
"size": 11735,
"upload_time": "2019-01-11T10:17:09",
"url": "https://files.pythonhosted.org/packages/45/e2/41e7431f14a76ae3c392b44ee5e4e2563bd90f926541415695a6172f5ecd/chaim-cli-2.0.11.tar.gz"
}
],
"2.0.12": [
{
"comment_text": "",
"digests": {
"md5": "f09d3b8371c321fe11995de674dfc003",
"sha256": "09a2242940dec983c9e1b612a52a74da325ef12454905b8e7074674392b8eafd"
},
"downloads": -1,
"filename": "chaim_cli-2.0.12-py3-none-any.whl",
"has_sig": false,
"md5_digest": "f09d3b8371c321fe11995de674dfc003",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3",
"size": 17796,
"upload_time": "2019-01-11T10:46:11",
"url": "https://files.pythonhosted.org/packages/29/2b/3cf17cb2f6f435349e7993ab233b90a289e446ddfd8a4b8032f81f26206f/chaim_cli-2.0.12-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "943b0872b4fd66612868b8edbcf3d1e9",
"sha256": "bb98e3ac3247c2fd925d5a86d3a04d8cfee31ebb9ee6a51edc775e0646043173"
},
"downloads": -1,
"filename": "chaim-cli-2.0.12.tar.gz",
"has_sig": false,
"md5_digest": "943b0872b4fd66612868b8edbcf3d1e9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3",
"size": 11828,
"upload_time": "2019-01-11T10:46:12",
"url": "https://files.pythonhosted.org/packages/f1/53/f856205fa371c98b741d9f8e902c53624b88902b077dbdf46cc3677fdba9/chaim-cli-2.0.12.tar.gz"
}
],
"2.0.13": [
{
"comment_text": "",
"digests": {
"md5": "5d16c84a97fb6e8f3bd1254c0bfa8f29",
"sha256": "6fc64d8c2151c2194286876e0a779c01b4a53bd655b38560ab3a0407dc3f2f23"
},
"downloads": -1,
"filename": "chaim_cli-2.0.13-py3-none-any.whl",
"has_sig": false,
"md5_digest": "5d16c84a97fb6e8f3bd1254c0bfa8f29",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3",
"size": 17801,
"upload_time": "2019-01-11T17:40:54",
"url": "https://files.pythonhosted.org/packages/29/55/3df935a374c51a0f16f6aea41b9522f92eb017ffcbe2abcfb5db9c3b9b4a/chaim_cli-2.0.13-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "d953b0e4ffd8ffefd4c67418606d9b2d",
"sha256": "4268e5d771cc58e2be318d170f38c75d14d533bb62bbadf4e396a119e38cc3e3"
},
"downloads": -1,
"filename": "chaim-cli-2.0.13.tar.gz",
"has_sig": false,
"md5_digest": "d953b0e4ffd8ffefd4c67418606d9b2d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3",
"size": 11841,
"upload_time": "2019-01-11T17:40:55",
"url": "https://files.pythonhosted.org/packages/d4/e4/8d9a6f49716fa2411f833658f14582741835a22d4275dfff981468c964a9/chaim-cli-2.0.13.tar.gz"
}
],
"2.0.14": [
{
"comment_text": "",
"digests": {
"md5": "1b20dd37a5817e8f57d4642727275ab1",
"sha256": "774ba02d16e391784ee1157bff7bef196fd45897bde65cd45843ee1a5fb46356"
},
"downloads": -1,
"filename": "chaim_cli-2.0.14-py3-none-any.whl",
"has_sig": false,
"md5_digest": "1b20dd37a5817e8f57d4642727275ab1",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3",
"size": 17794,
"upload_time": "2019-01-12T04:05:02",
"url": "https://files.pythonhosted.org/packages/92/9e/b643318a16717dfc9571390b29fbb7b0b159f27512a9f17981d05b97fb11/chaim_cli-2.0.14-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "0c31b66539a6eead2acc151fc361e3e7",
"sha256": "8b282b2ad0ec84e5e5b0c3812456578d855b8f007ef33f94c1356432f45a4fe7"
},
"downloads": -1,
"filename": "chaim-cli-2.0.14.tar.gz",
"has_sig": false,
"md5_digest": "0c31b66539a6eead2acc151fc361e3e7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3",
"size": 11836,
"upload_time": "2019-01-12T04:05:03",
"url": "https://files.pythonhosted.org/packages/48/64/b9cf6f35fadcd9b8c886dfb04242133f622430c9a33f08080fe31e0ad29a/chaim-cli-2.0.14.tar.gz"
}
],
"2.0.21": [
{
"comment_text": "",
"digests": {
"md5": "89436930b89fa897679d689cad92b715",
"sha256": "02829ec5e0617e02fbeba57ce12fea0ef67f12b9dee26dfcc3d7bc45e42efc6f"
},
"downloads": -1,
"filename": "chaim_cli-2.0.21-py3-none-any.whl",
"has_sig": false,
"md5_digest": "89436930b89fa897679d689cad92b715",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3",
"size": 17993,
"upload_time": "2019-01-22T15:25:38",
"url": "https://files.pythonhosted.org/packages/45/59/cd3d37300e9aee04581d9d80f867ac5fd002b68e6c21c98bec1dc6f79f57/chaim_cli-2.0.21-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "2690cc6aa00c7630e695b46ee5074d8c",
"sha256": "967501c255ad9c4e21272cfcdc9bab1ee201d07193264a0bbb9b0018b49107cc"
},
"downloads": -1,
"filename": "chaim-cli-2.0.21.tar.gz",
"has_sig": false,
"md5_digest": "2690cc6aa00c7630e695b46ee5074d8c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3",
"size": 12027,
"upload_time": "2019-01-22T15:25:40",
"url": "https://files.pythonhosted.org/packages/82/99/62d433882543eebcd06652e68a320a203b6ddab55df9cedfb80458f14755/chaim-cli-2.0.21.tar.gz"
}
],
"2.0.9": [
{
"comment_text": "",
"digests": {
"md5": "94b02ddc9db8fba3eaab990522e71783",
"sha256": "92fb011dda3c3bf3ea1a4c1cb606a2310f8b7e73c99f6294b5ba7e2f8bcd5a84"
},
"downloads": -1,
"filename": "chaim_cli-2.0.9-py3-none-any.whl",
"has_sig": false,
"md5_digest": "94b02ddc9db8fba3eaab990522e71783",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3",
"size": 13803,
"upload_time": "2019-01-11T09:06:33",
"url": "https://files.pythonhosted.org/packages/fe/3f/0112c7d6538d1b80a5a41958a621c2884c5e21fd75b64f67b7d3a76c4f00/chaim_cli-2.0.9-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "a0d58a26d14382d44c08dca0c4cc6e11",
"sha256": "a6304711a813b2925f4ac6bfe6b61392cedc0bf948d6136d9c19e6dbd9be399c"
},
"downloads": -1,
"filename": "chaim-cli-2.0.9.tar.gz",
"has_sig": false,
"md5_digest": "a0d58a26d14382d44c08dca0c4cc6e11",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3",
"size": 11455,
"upload_time": "2019-01-11T09:06:35",
"url": "https://files.pythonhosted.org/packages/41/99/a2ebf4f602b5ecdc7259a17e7e34db3fbaa85b714d20c3c771558b15042d/chaim-cli-2.0.9.tar.gz"
}
],
"2.1.16": [
{
"comment_text": "",
"digests": {
"md5": "54961d387709059d7439496fb33ae3a3",
"sha256": "57698848e00d62dbf659fe517528f43693253bdf08995a81b556afc395ede8bc"
},
"downloads": -1,
"filename": "chaim_cli-2.1.16-py3-none-any.whl",
"has_sig": false,
"md5_digest": "54961d387709059d7439496fb33ae3a3",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3",
"size": 18330,
"upload_time": "2019-07-17T08:38:10",
"url": "https://files.pythonhosted.org/packages/fa/79/f835863f89166cddc850603c3e751719f8eb9a8cf593f074100af4c20917/chaim_cli-2.1.16-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "43d0a2a473ef2d3699e966871426b1f2",
"sha256": "3362fd17dd11b970d17d5666959928f969ac68a1d892eae9733e25ee216d3216"
},
"downloads": -1,
"filename": "chaim-cli-2.1.16.tar.gz",
"has_sig": false,
"md5_digest": "43d0a2a473ef2d3699e966871426b1f2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3",
"size": 12354,
"upload_time": "2019-07-17T08:38:12",
"url": "https://files.pythonhosted.org/packages/4d/65/c7e85cbc53da8df4643603169265f09e099941fc7f5eeccf01877eb98a15/chaim-cli-2.1.16.tar.gz"
}
],
"2.1.3": [
{
"comment_text": "",
"digests": {
"md5": "dd82e94953fa89543345e5dbd651e89b",
"sha256": "ff4e7e81027653d183d953b34a946c93d11aeb319f6b90e1e7765dbc09d74315"
},
"downloads": -1,
"filename": "chaim_cli-2.1.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "dd82e94953fa89543345e5dbd651e89b",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3",
"size": 18082,
"upload_time": "2019-05-15T06:10:25",
"url": "https://files.pythonhosted.org/packages/a0/0d/c9a8926c80ba03d70958c9604a1c15ebb654b73d08f62d51a763afc71db7/chaim_cli-2.1.3-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "8420a3545dfdce4f2d929668551db8e8",
"sha256": "caa19eda9b45057bbd0055edf81ccc3deaf5a780c2419b4778cbcc672a2c5315"
},
"downloads": -1,
"filename": "chaim-cli-2.1.3.tar.gz",
"has_sig": false,
"md5_digest": "8420a3545dfdce4f2d929668551db8e8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3",
"size": 12131,
"upload_time": "2019-05-15T06:10:27",
"url": "https://files.pythonhosted.org/packages/a0/a0/382ac11e869434fcac147ae3afa85f5e62ae29499e57f9b7c41d6a46820a/chaim-cli-2.1.3.tar.gz"
}
],
"2.1.4": [
{
"comment_text": "",
"digests": {
"md5": "985b49a69d5fa7bb655976e11c10d7ce",
"sha256": "bf79df7151035f14a565e10cbc8a928d63e169244dd66f355c5f0e31d7f88223"
},
"downloads": -1,
"filename": "chaim_cli-2.1.4-py3-none-any.whl",
"has_sig": false,
"md5_digest": "985b49a69d5fa7bb655976e11c10d7ce",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3",
"size": 18219,
"upload_time": "2019-05-15T06:15:02",
"url": "https://files.pythonhosted.org/packages/c0/23/40576c9c3f873aff586bb151b87b64ee58306901402f7dbfea7767dbdf6e/chaim_cli-2.1.4-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "57abe7897e6beb7b7bc12eb4f39daa6c",
"sha256": "b36a30ff8fa1666226c10976cc65ae14b138694dcfd20e58d46454341672b4ef"
},
"downloads": -1,
"filename": "chaim-cli-2.1.4.tar.gz",
"has_sig": false,
"md5_digest": "57abe7897e6beb7b7bc12eb4f39daa6c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3",
"size": 12258,
"upload_time": "2019-05-15T06:15:03",
"url": "https://files.pythonhosted.org/packages/e1/b0/012090c7d68ce89d803e9693e2e100dbead4069359148db37450d632c31a/chaim-cli-2.1.4.tar.gz"
}
],
"2.2.1": [
{
"comment_text": "",
"digests": {
"md5": "e667f95b27b96e6bae75f9a5cbc16742",
"sha256": "df983a0066c48d813fc974c8b2f98efa37acf500eda4c313eefba144e79a84a3"
},
"downloads": -1,
"filename": "chaim_cli-2.2.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "e667f95b27b96e6bae75f9a5cbc16742",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3",
"size": 17977,
"upload_time": "2019-07-19T13:15:45",
"url": "https://files.pythonhosted.org/packages/52/fd/1103e9cf0a64259e5a084fe64536a73ec959b06f24ae5240149a4fb2ceb4/chaim_cli-2.2.1-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "dba032317d6fe50603ab3a5100cf7555",
"sha256": "c67772e4f85e69b2889b7cf758dfbfda3f8379261ffbfdc1ead900ebbe79b21a"
},
"downloads": -1,
"filename": "chaim-cli-2.2.1.tar.gz",
"has_sig": false,
"md5_digest": "dba032317d6fe50603ab3a5100cf7555",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3",
"size": 12043,
"upload_time": "2019-07-19T13:15:47",
"url": "https://files.pythonhosted.org/packages/cf/df/f3c548e781dcce4513a14be0ae4e8002a280401709d1a601a8c2c3e0208d/chaim-cli-2.2.1.tar.gz"
}
],
"2.3.2": [
{
"comment_text": "",
"digests": {
"md5": "3fbc40d18963fd4ed05f40c1e64ef04d",
"sha256": "322cc9892e059eb4ede1cb5ba81edca8d714abc136bf9ef6878714d687233edd"
},
"downloads": -1,
"filename": "chaim_cli-2.3.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "3fbc40d18963fd4ed05f40c1e64ef04d",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3",
"size": 30362,
"upload_time": "2019-08-13T14:49:24",
"url": "https://files.pythonhosted.org/packages/41/b4/7c58b529dd6cef778ba1d9f92a86b6d146f4c43d097359df7faa300751de/chaim_cli-2.3.2-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "37271ae94e35a45d61281ab4f0bcd832",
"sha256": "60a0d4789d02ed0fbe751671ff663beb8aa22cc2dfe3443b88d0a94608d1f748"
},
"downloads": -1,
"filename": "chaim-cli-2.3.2.tar.gz",
"has_sig": false,
"md5_digest": "37271ae94e35a45d61281ab4f0bcd832",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3",
"size": 14888,
"upload_time": "2019-08-13T14:49:26",
"url": "https://files.pythonhosted.org/packages/e6/20/2c2aa9eaf00664fbc4b1aea71043b1bd502b325ce5dba93c8dd413916720/chaim-cli-2.3.2.tar.gz"
}
],
"2.3.3": [
{
"comment_text": "",
"digests": {
"md5": "2eebec0148ad0a5a7095ec1ec955e4f6",
"sha256": "505fc81109efff09ce5ccb7575c44b491ca5f6c82faca522a261165dd6e9e791"
},
"downloads": -1,
"filename": "chaim_cli-2.3.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "2eebec0148ad0a5a7095ec1ec955e4f6",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3",
"size": 30368,
"upload_time": "2019-08-13T14:53:19",
"url": "https://files.pythonhosted.org/packages/82/d8/1096b174e9f2ed51daf7c6eb4152d887c334e8ed3aa14519142bbacfd839/chaim_cli-2.3.3-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "0277d0776b80ed1f204278d45f2e9ede",
"sha256": "4266edea963c6e576e18f8393087bfd1ebe7677f48334b28e829ee9dff3895a7"
},
"downloads": -1,
"filename": "chaim-cli-2.3.3.tar.gz",
"has_sig": false,
"md5_digest": "0277d0776b80ed1f204278d45f2e9ede",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3",
"size": 14889,
"upload_time": "2019-08-13T14:53:21",
"url": "https://files.pythonhosted.org/packages/15/b5/30c71538f656d97e5eeb9a056aa7c6396c26e14e49de02f3abc77e4d791d/chaim-cli-2.3.3.tar.gz"
}
],
"2.4.1": [
{
"comment_text": "",
"digests": {
"md5": "c53e52fb2bbe48b07dc6e96b7639b40d",
"sha256": "74eace1937a4214ea6c69490924dc855bc71f1aebd7c708031282bd813c244a2"
},
"downloads": -1,
"filename": "chaim_cli-2.4.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "c53e52fb2bbe48b07dc6e96b7639b40d",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3",
"size": 18160,
"upload_time": "2019-09-04T15:17:45",
"url": "https://files.pythonhosted.org/packages/f4/47/41a658a15d3728ac791c961a9ff74eb76d2aa73f4c8ca87caf834df9852f/chaim_cli-2.4.1-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "fddcbeb8acdaf38788a07b69105eadad",
"sha256": "7b062516b9b75db024604aa16591c42b6a3302ab4cfac84ab063012f43ba6c83"
},
"downloads": -1,
"filename": "chaim-cli-2.4.1.tar.gz",
"has_sig": false,
"md5_digest": "fddcbeb8acdaf38788a07b69105eadad",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3",
"size": 12237,
"upload_time": "2019-09-04T15:17:47",
"url": "https://files.pythonhosted.org/packages/bd/49/a07f1ac2da8bdafc463e0cdbf6fb00aad95f3f350b3f7bfc82cb63151237/chaim-cli-2.4.1.tar.gz"
}
],
"2.4.4": [
{
"comment_text": "",
"digests": {
"md5": "a86388008c8de63f50cce61cd6fa27c3",
"sha256": "100f19425ad58b7c79a1004fa4c86b558eb0404f666e4bea909270e8379c9281"
},
"downloads": -1,
"filename": "chaim_cli-2.4.4-py3-none-any.whl",
"has_sig": false,
"md5_digest": "a86388008c8de63f50cce61cd6fa27c3",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3",
"size": 30452,
"upload_time": "2019-09-27T12:58:18",
"url": "https://files.pythonhosted.org/packages/57/07/b1c9c7e28c3875ece5d528d401f26dfd6ce9d3aed9424ba335ab85f35dfa/chaim_cli-2.4.4-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "99badc8685a765d99dfa13fc7b45bfae",
"sha256": "c2666bb2fd96e95fc299697ef3ee5b96bb224f4b307aaf3666d11324031547da"
},
"downloads": -1,
"filename": "chaim-cli-2.4.4.tar.gz",
"has_sig": false,
"md5_digest": "99badc8685a765d99dfa13fc7b45bfae",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3",
"size": 15052,
"upload_time": "2019-09-27T12:58:20",
"url": "https://files.pythonhosted.org/packages/8e/a8/69a9d9263aa3f1ba2ad8470ee14f49d77acaf115d1bcf5cd7b0015781457/chaim-cli-2.4.4.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "a86388008c8de63f50cce61cd6fa27c3",
"sha256": "100f19425ad58b7c79a1004fa4c86b558eb0404f666e4bea909270e8379c9281"
},
"downloads": -1,
"filename": "chaim_cli-2.4.4-py3-none-any.whl",
"has_sig": false,
"md5_digest": "a86388008c8de63f50cce61cd6fa27c3",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3",
"size": 30452,
"upload_time": "2019-09-27T12:58:18",
"url": "https://files.pythonhosted.org/packages/57/07/b1c9c7e28c3875ece5d528d401f26dfd6ce9d3aed9424ba335ab85f35dfa/chaim_cli-2.4.4-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "99badc8685a765d99dfa13fc7b45bfae",
"sha256": "c2666bb2fd96e95fc299697ef3ee5b96bb224f4b307aaf3666d11324031547da"
},
"downloads": -1,
"filename": "chaim-cli-2.4.4.tar.gz",
"has_sig": false,
"md5_digest": "99badc8685a765d99dfa13fc7b45bfae",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3",
"size": 15052,
"upload_time": "2019-09-27T12:58:20",
"url": "https://files.pythonhosted.org/packages/8e/a8/69a9d9263aa3f1ba2ad8470ee14f49d77acaf115d1bcf5cd7b0015781457/chaim-cli-2.4.4.tar.gz"
}
]
}