{ "info": { "author": "RoseCloud Team", "author_email": "rupakhet@rose-hulman.edu", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: Console", "Intended Audience :: Education", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3 :: Only", "Topic :: Education", "Topic :: Software Development :: Version Control :: Git", "Topic :: System :: Filesystems", "Topic :: Utilities" ], "description": "[![PyPI](https://img.shields.io/pypi/v/rc-cli.svg?style=for-the-badge)](https://pypi.org/project/rc-cli/) \n[![PyPI - License](https://img.shields.io/pypi/l/rc-cli.svg?style=for-the-badge)](https://pypi.org/project/rc-cli/)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/rc-cli.svg?style=for-the-badge)](https://pypi.org/project/rc-cli/)\n\n# RoseCloud CLI \nThe RoseCloud CLI tool. It is intended to be used to setup and manage\na RoseCloud workspace for instructors and teaching assistants.\n\n## Requirements\n- python 3.5+\n\n## Development\n### Setup\n#### With `pipenv`\n 1. Install `pipenv`: `sudo pip install pipenv`.\n 2. Run `pipenv install`.\nThis sets up a python virtual environment for you. All subsequent\ncommands should be run via `pipenv run ...`. If you need to add\nanother dependency, run `pipenv install `.\n\n##### Link CLI\n 1. Run `pipenv install -e .`. This will create a symlink to this\nproject. All changes here will show up in the `pipenv`.\n 2. Run `pipenv run rc --help`.\n\n#### With `pip`\n 1. Run `pip install -r requirements.txt`\nThis will install all dependencies to your machine. This is if you do not\nwant to mess around with virtual environments and are fine with adding a few\ndependencies globally to your machine.\n\n##### Link CLI\n 1. Run `pip install -e .`\n 2. Run `rc --help`\n\n### Things to Keep in Mind\n- Update `requirements.txt` once in a while. Recommend using `pigar`\n- Update `setup.py` dependencies once in a while.\n- Update Docker image once in a while by running\n - `docker build -t docker.csse.rose-hulman.edu/rosebuild/rc-cli/pypi-deployer:MAJOR.MINOR.PATCH . --no-cache`\n - `docker push docker.csse.rose-hulman.edu/rosebuild/rc-cli/pypi-deployer:MAJOR.MINOR.PATCH`\n- We need test\n - Click supports isolated filesystem and internal invocation\n\n### Testing\nIn order to run tests on this project, please follow the below steps. Before proceeding, assure that you have Python3.4 or greater downloaded\n\n#### Setup Python and Pip\nIf you have installed Python 3.4 or greater, pip will be bundled in the install. However, you may find\nthat you are still unable to use the pip commands in terminal. This is because we must place pip into\nyour computers environment variables. To do this:\n- Open up the windows menu in the bottom left of the screen\n- Right click on \"Computer\" and select properties\n- Select \"Advanced System Settings\"\n- Select \"Environment Variables\"\n- In the box labelled \"System Variables\", locate the \"Path\" variable\n- Select this row and select \"Edit\"\n- Append to end of the list \";{Path to Python install};{Path to Python install}\\Scripts\"\n- Reopen your terminal and you should be able to sue pip commands\n\n#### Install Libraries\n\n##### Pip\nWe now need to run all of the necessary installs. These installs are listed below.\n- if you have not already, run \"pip install requirements.txt\"\n\n##### Virtualenv\n\n- Navigate to the rc-cli folder\n- Enter the comman \"virtualenv venv/Script/bin\"\n- Enter the command \"nosetest\"\n\n#### Running the Tests\nYou should now be able to run the tests. Navigate to the rc_cli\\restore forlder in terminal.\nNow, run the command \"nosetests RestorerTests.py\". At this point, I am getting a \"bad git executable\"\nerror. Please let me know if you get any errors from this.\n\n## Publishing\n### CI\nYou can read below for how to do it manually. To deploy, make sure the repository\nis cleaned (all files committed and pushed).\n\n**NOTE**\n\nBefore committing to master, please update the version of the rc-cli service.\nTo do this, update the `version` parameter in the setup.py file to be the latest version,\nin the form `MAJOR.MINOR.PATCH`.\n\n\n\n### Setup\nFirst, you need to install `PyPi`'s publication tool `twine`.\nRun,\n```shell\npip install twine\n```\n\nYou will also need `wheel`.\nRun,\n```shell\npip install wheel\n```\n\nLastly, ensure you have the latest `setuptools` by running\n```shell\npip install --upgrade setuptools\n```\n\nYou will need to also setup a PyPi account ([link](https://pypi.org/account/register/))\nand a test PyPi account ([link](https://test.pypi.org/account/register/)).\n\nFor ease of use, you can create a file in your home directory called\n`.pypirc` with the following. For linux and osx, this would be `~/.pypirc`. `Twine` will use this to request rather than\nrequesting for credentials.\n```\n[pypi]\nusername = \npassword = \n\n[testpypi]\nusername = \npassword = \n```\n\n### Update Version\nBefore we can generate any files to publish, we must first update the version of the software.\n\n1. Open `setup.py`\n2. Find the `version` parameter on line 12\n3. Modify this parameter to be the new vesion number. The format is `MAJOR.MINOR.PATCH`\n\n### Generating Dist Files\n**Before you begin, make sure `python` has version 3.5+. The following command will\ngenerate dist files that are specific to your `python` version and some of the features\nused in this project are `python 3.5+` specific.**\n\nTo generate `dist` files, you need to run\n```shell\npython setup.py bdist_wheel\n```\n\n### Upload New Distribution\nIf you are uploading changes, you should update the version in the `setup.py` following\nsemantic versioning principles. (Refer to [Update Version](#update-version))\n\nRun the following to upload latest changes to official `PyPi` servers\n```shell\ntwine upload dist/*\n```\n\nYou can now install it using\n```shell\npip install rc-cli\n```\n\nAlternatively, to test without messing with production, run this\n```shell\ntwine upload --repository-url https://test.pypi.org/legacy/ dist/*\n```\n\nTo install from test,\n```shell\npip install --index-url https://test.pypi.org/rc-cli rc-cli\n```\n\nMore info here on PyPi distribution [link](https://packaging.python.org/tutorials/distributing-packages/).\n\nMore info here on test PyPi [link](https://packaging.python.org/guides/using-testpypi/#using-test-pypi).\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": "", "keywords": "rose-hulman rosecloud management setuptools", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "rc-cli", "package_url": "https://pypi.org/project/rc-cli/", "platform": "", "project_url": "https://pypi.org/project/rc-cli/", "project_urls": { "Bug Reports": "https://ada.csse.rose-hulman.edu/RoseBuild/rc-cli/boards", "Source": "https://ada.csse.rose-hulman.edu/RoseBuild/rc-cli/tree/master" }, "release_url": "https://pypi.org/project/rc-cli/0.4.1/", "requires_dist": [ "Click (==6.7)", "colorama (==0.3.9)", "requests (==2.18.4)", "gitpython (==2.1.9)", "pytz (==2018.3)" ], "requires_python": ">=3.5", "summary": "RoseCloud CLI", "version": "0.4.1" }, "last_serial": 4999824, "releases": { "0.0.0": [ { "comment_text": "", "digests": { "md5": "540e5b0779efe0a52dfd79ee0859c919", "sha256": "be54a5abf24534cf47f834921ee87012d8c291e5021d15e4f2f692084548a323" }, "downloads": -1, "filename": "rc_cli-0.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "540e5b0779efe0a52dfd79ee0859c919", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 40313, "upload_time": "2018-11-12T15:30:16", "url": "https://files.pythonhosted.org/packages/08/06/1767af825719e9b80bfb83f3b1f7c14f1556d712604414e20c1f80d0c7fb/rc_cli-0.0.0-py3-none-any.whl" } ], "0.0.1": [ { "comment_text": "", "digests": { "md5": "be5473e275f59a31c02097af74b39e7e", "sha256": "88d3fd230b4bcdc8a024a3d277a45701784c37ac390113a95ff7af38b4643c5e" }, "downloads": -1, "filename": "rc_cli-0.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "be5473e275f59a31c02097af74b39e7e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 33022, "upload_time": "2018-04-04T21:01:56", "url": "https://files.pythonhosted.org/packages/7f/47/006a9d2901c71a24b72bc34e266527e73abfb9f816a3861a9a174c10dd32/rc_cli-0.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "73f7e1b4f8ea66e642da83ebd1462065", "sha256": "5e14644b7c80cc5b9eab4e68d996d5f7277ccf14ad72405db53f1f478727e62d" }, "downloads": -1, "filename": "rc_cli-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "73f7e1b4f8ea66e642da83ebd1462065", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 31512, "upload_time": "2018-04-04T21:01:57", "url": "https://files.pythonhosted.org/packages/67/82/452b86725dc09d5cd018333bd682b2d13801804121a8f7014098ebe9aa85/rc_cli-0.0.1-py3-none-any.whl" } ], "0.0.10": [ { "comment_text": "", "digests": { "md5": "15c62b5d1e20beeb84a8bb017a7120cf", "sha256": "064ab20ecd2727dada14421ac15efe9ac9844040ca7b2df2597a3ee2dd721843" }, "downloads": -1, "filename": "rc_cli-0.0.10-py3-none-any.whl", "has_sig": false, "md5_digest": "15c62b5d1e20beeb84a8bb017a7120cf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 33021, "upload_time": "2018-04-05T18:10:03", "url": "https://files.pythonhosted.org/packages/c6/83/94de2064b2774df6b6da60b1ef8509f41e93f0786b697df4b687df9d30d2/rc_cli-0.0.10-py3-none-any.whl" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "b6aa57522618faa238a1d54832dbd8f3", "sha256": "f01c7635c5a123e8fbe786fc3aaca169e478d7dceada69f37ffd1d3ae5a867a3" }, "downloads": -1, "filename": "rc_cli-0.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "b6aa57522618faa238a1d54832dbd8f3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 32200, "upload_time": "2018-04-04T21:47:30", "url": "https://files.pythonhosted.org/packages/53/fa/0924085e112857b5f2b0d1388b035632bdf7d7ade2f296b919b61f6e1986/rc_cli-0.0.2-py3-none-any.whl" } ], "0.0.28": [ { "comment_text": "", "digests": { "md5": "480c1e8516f0dce56acf9a1669b25b0c", "sha256": "817f62e21a83cbb88cb837c8abb13bfc3a0c3465941f071fc6f034adc842b0a1" }, "downloads": -1, "filename": "rc_cli-0.0.28-py3-none-any.whl", "has_sig": false, "md5_digest": "480c1e8516f0dce56acf9a1669b25b0c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 32997, "upload_time": "2018-04-06T01:12:55", "url": "https://files.pythonhosted.org/packages/94/d6/2abc2d1c183e3b66c4b0d109bc7f81f9c10d3449d7b647218c213e1b7f10/rc_cli-0.0.28-py3-none-any.whl" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "2028eae7e4e4d611e388009e8e5b84bb", "sha256": "0bfce3ef0ec2654e53e5c50a87edb9a4803cc724d9fbd534d4c3fe3def67974e" }, "downloads": -1, "filename": "rc_cli-0.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "2028eae7e4e4d611e388009e8e5b84bb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 32211, "upload_time": "2018-04-04T23:29:14", "url": "https://files.pythonhosted.org/packages/a3/ad/63ce53459b4be986a003ad6382ceca3d82c345cce09dcff9a5f050a1d8f0/rc_cli-0.0.3-py3-none-any.whl" } ], "0.0.31": [ { "comment_text": "", "digests": { "md5": "4d2aa45997d4e2131952226cd50ca5ed", "sha256": "245204da1593d4a9e8caec81f9dfa948e53bed43de56e5be12cbb659b44dc0c3" }, "downloads": -1, "filename": "rc_cli-0.0.31-py3-none-any.whl", "has_sig": false, "md5_digest": "4d2aa45997d4e2131952226cd50ca5ed", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 33022, "upload_time": "2018-04-06T01:29:36", "url": "https://files.pythonhosted.org/packages/b4/de/dff2df59796f277f9c89e780ac897f6efecbcbe2c99eb3f3de5bdd045ea1/rc_cli-0.0.31-py3-none-any.whl" } ], "0.0.32": [ { "comment_text": "", "digests": { "md5": "dbb9cd2aab497f192833c9739c3ce243", "sha256": "6aa6c5ee90195462b23fcfcdc3cd3c7868d37075c5ad6e7d60c3cb3582d167f2" }, "downloads": -1, "filename": "rc_cli-0.0.32-py3-none-any.whl", "has_sig": false, "md5_digest": "dbb9cd2aab497f192833c9739c3ce243", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 33497, "upload_time": "2018-04-06T01:54:18", "url": "https://files.pythonhosted.org/packages/64/6d/041220e87ea9171ecb0bf2fa6b547615337024bd8c798da58d8691540648/rc_cli-0.0.32-py3-none-any.whl" } ], "0.0.33": [ { "comment_text": "", "digests": { "md5": "1411fee4c33452fbff008c4fa3d120c9", "sha256": "0e40f7fe958f60d04683ad3ef65d9345be5ec50fcbfe882504f8c45d5b833fbf" }, "downloads": -1, "filename": "rc_cli-0.0.33-py3-none-any.whl", "has_sig": false, "md5_digest": "1411fee4c33452fbff008c4fa3d120c9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 33544, "upload_time": "2018-04-06T19:57:46", "url": "https://files.pythonhosted.org/packages/59/27/6ed9abcf6b3efc63812e7af6090fc9ac043217ebaaba710231e604f1f326/rc_cli-0.0.33-py3-none-any.whl" } ], "0.0.34": [ { "comment_text": "", "digests": { "md5": "0b54f0373e3ac37ffb3aad2a13ea0a35", "sha256": "1c7e7e088748234f41702cf7e594b8145847d575de5b1087fc6cee3ae1e2d995" }, "downloads": -1, "filename": "rc_cli-0.0.34-py3-none-any.whl", "has_sig": false, "md5_digest": "0b54f0373e3ac37ffb3aad2a13ea0a35", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 33544, "upload_time": "2018-04-06T20:11:55", "url": "https://files.pythonhosted.org/packages/8b/de/7e83f5057093e47c0b2e65de3da63c0a309166fe3a05537183233dc6f7c9/rc_cli-0.0.34-py3-none-any.whl" } ], "0.0.35": [ { "comment_text": "", "digests": { "md5": "7ea14c052c599ec88ce762d080a120f3", "sha256": "f013f4ede45aef5949ff069c0002975c12e0ecf527ad7d70b16fdf05ac88aa2b" }, "downloads": -1, "filename": "rc_cli-0.0.35-py3-none-any.whl", "has_sig": false, "md5_digest": "7ea14c052c599ec88ce762d080a120f3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 33620, "upload_time": "2018-04-06T20:22:39", "url": "https://files.pythonhosted.org/packages/e0/a2/a5e76390ffc2fe2bedc7b364089814680d050b254a49f08151f0e9b83c2d/rc_cli-0.0.35-py3-none-any.whl" } ], "0.0.36": [ { "comment_text": "", "digests": { "md5": "6a083a2f8245c308cfc18cf629ed68eb", "sha256": "d7efd77e5e12712000d04b558b9147389f31c192d89a74ad3df972892efabd70" }, "downloads": -1, "filename": "rc_cli-0.0.36-py3-none-any.whl", "has_sig": false, "md5_digest": "6a083a2f8245c308cfc18cf629ed68eb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 33518, "upload_time": "2018-04-06T21:44:52", "url": "https://files.pythonhosted.org/packages/34/c0/846cc743c5d561cabc78c41e6b0d86d2eb03e6675c45c8a4aa6d7ac866f2/rc_cli-0.0.36-py3-none-any.whl" } ], "0.0.37": [ { "comment_text": "", "digests": { "md5": "8325ed523f6584e60d5e31b097204e29", "sha256": "1cea5d50a06bace17268a665b8a07d18a22631bec1c4fb539d424dca0c27e0ea" }, "downloads": -1, "filename": "rc_cli-0.0.37-py3-none-any.whl", "has_sig": false, "md5_digest": "8325ed523f6584e60d5e31b097204e29", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 34214, "upload_time": "2018-04-07T00:25:00", "url": "https://files.pythonhosted.org/packages/68/28/683ceefc56979d2fcaf0121452929497ea04bf3af1a60d0c42490f538156/rc_cli-0.0.37-py3-none-any.whl" } ], "0.0.38": [ { "comment_text": "", "digests": { "md5": "ff756c3dfc2d90cf325fcecb967da946", "sha256": "2b1997830bbe2cf5774cf41aa939c86853d2cbf35164bbf3caac3a23f332f871" }, "downloads": -1, "filename": "rc_cli-0.0.38-py3-none-any.whl", "has_sig": false, "md5_digest": "ff756c3dfc2d90cf325fcecb967da946", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 34229, "upload_time": "2018-04-11T16:28:16", "url": "https://files.pythonhosted.org/packages/98/ee/4a7fb0bdd6077d6bacab521dd342918db8ffe995d2a2a7c1237fb74624e4/rc_cli-0.0.38-py3-none-any.whl" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "5765a376a7501f9b80d69ea13168684b", "sha256": "a76e02db09cec862d30461fd56895ea33fca786a874215e2f127753202aabcd3" }, "downloads": -1, "filename": "rc_cli-0.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "5765a376a7501f9b80d69ea13168684b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 32209, "upload_time": "2018-04-05T00:08:45", "url": "https://files.pythonhosted.org/packages/45/2b/881be3121d935fe8649f51875140730d2c4d7391a853ff3f9cd15f295e35/rc_cli-0.0.4-py3-none-any.whl" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "f59718f69aa291eb6d17ff0dc24a6a58", "sha256": "795a7f737bff8628afca714bd00fbe07fe098319728250f36bd5999a00af251b" }, "downloads": -1, "filename": "rc_cli-0.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "f59718f69aa291eb6d17ff0dc24a6a58", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 32697, "upload_time": "2018-04-05T01:26:56", "url": "https://files.pythonhosted.org/packages/ab/45/2dbeb54b0fa671f563d7ca26826b9688d57b4cbb7a8d1b9181757b5d76c6/rc_cli-0.0.5-py3-none-any.whl" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "60ed04573a1d027f02c991ab91b4418c", "sha256": "8d74e07ede91870f277cf5d658fe4489195f814e9b2923848eae7c3810537a9a" }, "downloads": -1, "filename": "rc_cli-0.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "60ed04573a1d027f02c991ab91b4418c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 32745, "upload_time": "2018-04-05T02:21:21", "url": "https://files.pythonhosted.org/packages/c7/89/068a5fa5d0eccc19a40c8dcd4a9f1982c03cf0472f62713401899fa64fc4/rc_cli-0.0.6-py3-none-any.whl" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "eaa8063ee8f3a5b644bbfe5a6765ed54", "sha256": "507295ea7457966ea701fbbfebad987f631779aa1c16efb42a6a7f15885f12a1" }, "downloads": -1, "filename": "rc_cli-0.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "eaa8063ee8f3a5b644bbfe5a6765ed54", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 32829, "upload_time": "2018-04-05T03:46:10", "url": "https://files.pythonhosted.org/packages/d7/c0/b10d198c4dc0e97df87fd01d17e215f4ff61144b3cf230d8d2d3845c8c43/rc_cli-0.0.7-py3-none-any.whl" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "d6267fc2a4cf31e54adca11f129d546b", "sha256": "fed14a8374de7818e14ef02379f1cb2bd7bb12088952da24f1d35d6458b7b7f8" }, "downloads": -1, "filename": "rc_cli-0.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "d6267fc2a4cf31e54adca11f129d546b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 33007, "upload_time": "2018-04-05T16:23:08", "url": "https://files.pythonhosted.org/packages/22/fa/d27563282c27586c6d77c9b02d416f5252b696d7c0a62169a70eb252a84e/rc_cli-0.0.8-py3-none-any.whl" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "8d0514e19f009954689840c570eb27c7", "sha256": "747cfb4d8546c524f60bf68bb9a3a6aff1e1b9ef824fb68cf2c72a60a193cd84" }, "downloads": -1, "filename": "rc_cli-0.0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "8d0514e19f009954689840c570eb27c7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 33008, "upload_time": "2018-04-05T16:25:39", "url": "https://files.pythonhosted.org/packages/25/29/a3ee1673bd2b8892ff9ba1afd26662039ff7a3d4b10bdf76d5558e4cbd41/rc_cli-0.0.9-py3-none-any.whl" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "64c074360dde13f0ce7ac0418c881833", "sha256": "38892f226fbfd013a067b7e5557a6403f55897456002792d2a0a258fb6eeea13" }, "downloads": -1, "filename": "rc_cli-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "64c074360dde13f0ce7ac0418c881833", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 35751, "upload_time": "2018-04-12T19:17:27", "url": "https://files.pythonhosted.org/packages/aa/84/bcd8f227d7676b2083c445d4adf7441e2e5d0941338531c698b22581f4e3/rc_cli-0.1.0-py3-none-any.whl" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "ef3723f89176adab7d37e0030c76abae", "sha256": "efd6d2231e22116863ce9cb3b9b52ac86fa69ec06a12cacc46453863aa676891" }, "downloads": -1, "filename": "rc_cli-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "ef3723f89176adab7d37e0030c76abae", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 35753, "upload_time": "2018-04-16T21:22:42", "url": "https://files.pythonhosted.org/packages/1d/ea/6d1b945ef60c321ea7624368f7ae6fbc4b15112ab29bebc3ef233a3fb61e/rc_cli-0.1.1-py3-none-any.whl" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "28ae27b176b0d2e729f87568c3e930e5", "sha256": "fd8cb230fe28d67ed62f04d79b29b7008a3694b684e6acef9f2a93c690e2c539" }, "downloads": -1, "filename": "rc_cli-0.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "28ae27b176b0d2e729f87568c3e930e5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 35742, "upload_time": "2018-04-17T17:58:04", "url": "https://files.pythonhosted.org/packages/e6/15/cde04d339ebc3a290ea8e96021c6ef907b72e5cc2e497e4e6914641b40fd/rc_cli-0.1.2-py3-none-any.whl" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "27211b4111a4a4504f21c9371d39246d", "sha256": "cb3358afe3061421c8e97a1250e10859c4a788212eb3bb98e6a349b45d87f2cc" }, "downloads": -1, "filename": "rc_cli-0.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "27211b4111a4a4504f21c9371d39246d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 35766, "upload_time": "2018-04-17T20:46:28", "url": "https://files.pythonhosted.org/packages/ce/52/23dc4d72dfe37f654acdb332bee6ee3dde80b46eb909a2bf92e55f2443f4/rc_cli-0.1.3-py3-none-any.whl" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "62e1dcb74a31c05720b8ad50ee5eafdb", "sha256": "8bb117f5ba885ec21ccefe526375b99f7568fc583c5cf0d6732fbc685305aff8" }, "downloads": -1, "filename": "rc_cli-0.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "62e1dcb74a31c05720b8ad50ee5eafdb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 35769, "upload_time": "2018-04-20T04:26:06", "url": "https://files.pythonhosted.org/packages/c8/ae/9a0abdad80d601eedc31b7e68b55871ca76489c51ea8d07a8538ed83e0c6/rc_cli-0.1.4-py3-none-any.whl" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "db217d2786eff69b01d4179c56282504", "sha256": "36b0123d077d8b1d4167faab9d4b0c4a06f84a56ab64f2df32955890aab7386c" }, "downloads": -1, "filename": "rc_cli-0.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "db217d2786eff69b01d4179c56282504", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 35890, "upload_time": "2018-04-20T16:47:30", "url": "https://files.pythonhosted.org/packages/c8/8f/bdaa9521b1b70fce41d167c110db7a9766fd9f2f0aa80ac9ab8391bdfa90/rc_cli-0.1.5-py3-none-any.whl" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "3bbcf884410feec84353bc39eecb468f", "sha256": "f5e781dd01777c8c3255c0988eab34d4028061cb7624cea4abbd24c122eba505" }, "downloads": -1, "filename": "rc_cli-0.1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "3bbcf884410feec84353bc39eecb468f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 35895, "upload_time": "2018-04-20T20:38:45", "url": "https://files.pythonhosted.org/packages/a2/2c/a43726dc49366767a120098560b1cc1b558910a4446417b70ae96c5e421e/rc_cli-0.1.6-py3-none-any.whl" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "f71d5d366e4069f776e2af39bec5ca8d", "sha256": "ed37cb2c9f8bcbaba60a2c5b66104bc660b4f61d10ec5adc12ca758364e5f641" }, "downloads": -1, "filename": "rc_cli-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f71d5d366e4069f776e2af39bec5ca8d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 36062, "upload_time": "2018-04-22T20:07:09", "url": "https://files.pythonhosted.org/packages/d8/3a/43c916ba662f672142c0121fb0b8f42be7c0438b9a06f8b5824084655819/rc_cli-0.2.0-py3-none-any.whl" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "dc806651ac2efeba5372a0f96d1f2678", "sha256": "a2873f63eb4052e000e1c340564c3a9ce34502190b09a55ce548f970ba37247a" }, "downloads": -1, "filename": "rc_cli-0.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "dc806651ac2efeba5372a0f96d1f2678", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 36063, "upload_time": "2018-04-22T23:11:42", "url": "https://files.pythonhosted.org/packages/89/e8/d7db0e2708b60f79a2ad35337cadea723994b3d509431d4f1a2355e9f9e3/rc_cli-0.2.1-py3-none-any.whl" } ], "0.2.11": [ { "comment_text": "", "digests": { "md5": "de2a475983f9b68e322c5579053c75f0", "sha256": "b24c02a53934cee62cbade0d648f6cac074ac320ec881203aca82de570003591" }, "downloads": -1, "filename": "rc_cli-0.2.11-py3-none-any.whl", "has_sig": false, "md5_digest": "de2a475983f9b68e322c5579053c75f0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 36303, "upload_time": "2018-05-18T20:43:34", "url": "https://files.pythonhosted.org/packages/9b/46/6144d80976c6a9b9debc7e32c167a96edcaf901127baa33788056e800fb6/rc_cli-0.2.11-py3-none-any.whl" } ], "0.2.12": [ { "comment_text": "", "digests": { "md5": "99f3a934531767bd19baf1cc057b7031", "sha256": "87257903f837c08648a418682bebe16987c22cc49af5a3685951c549cf9d0aa4" }, "downloads": -1, "filename": "rc_cli-0.2.12-py3-none-any.whl", "has_sig": false, "md5_digest": "99f3a934531767bd19baf1cc057b7031", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 41436, "upload_time": "2018-10-29T18:17:44", "url": "https://files.pythonhosted.org/packages/a9/97/f4d4b0de4e47c68f0b9ec0fb193abd82467a460186ed8e81fcad14a6973e/rc_cli-0.2.12-py3-none-any.whl" } ], "0.2.14": [ { "comment_text": "", "digests": { "md5": "aa87169ac13a548de45d18c2b46b8a31", "sha256": "61bdea3bc20589f2b8c341ddcc68bed26c4c4e959c63c7ef1eefcf0d04ceb880" }, "downloads": -1, "filename": "rc_cli-0.2.14-py3-none-any.whl", "has_sig": false, "md5_digest": "aa87169ac13a548de45d18c2b46b8a31", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 41882, "upload_time": "2018-11-12T15:30:18", "url": "https://files.pythonhosted.org/packages/e1/85/c37b9932910e35d8d8d8cafb56ec11ccfb18a68e04c559d2d01623c3783b/rc_cli-0.2.14-py3-none-any.whl" } ], "0.2.15": [ { "comment_text": "", "digests": { "md5": "e912dea43525861bf0b9895f089dfe4b", "sha256": "a8b4f07624951609ad727c44f8077cd0041dbe6461783e297b0b04b9f7b96813" }, "downloads": -1, "filename": "rc_cli-0.2.15-py3-none-any.whl", "has_sig": false, "md5_digest": "e912dea43525861bf0b9895f089dfe4b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 45696, "upload_time": "2019-01-08T14:02:11", "url": "https://files.pythonhosted.org/packages/fd/54/17c7f033a841983b43e460d2923609a9ac9f0c34faed2837197190871164/rc_cli-0.2.15-py3-none-any.whl" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "852855f9ae92216189848f9853e6f009", "sha256": "6d13911ec70661d7e400cfc9804657bc2436e50353e4053e9a2b6d9010ef4408" }, "downloads": -1, "filename": "rc_cli-0.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "852855f9ae92216189848f9853e6f009", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 36161, "upload_time": "2018-04-23T00:12:13", "url": "https://files.pythonhosted.org/packages/84/92/063fa2ab9566a891a7053348202f2a2027be8756c7128f0f5c002195149c/rc_cli-0.2.2-py3-none-any.whl" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "f241acf41d2a62370c458ee5e7478aa3", "sha256": "c1a6d5c01acb69d0ed9596f5908b997e4c562f6c1e8d4889e8ab6c66bb2b1d39" }, "downloads": -1, "filename": "rc_cli-0.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "f241acf41d2a62370c458ee5e7478aa3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 36200, "upload_time": "2018-04-23T00:16:37", "url": "https://files.pythonhosted.org/packages/00/23/bf22ba7cf5bd55a01248e0962145e5d7986158a8022ecd5778032158f1dd/rc_cli-0.2.3-py3-none-any.whl" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "c8fc2b2a4581ec5174101d7dbd4d541e", "sha256": "b1e5a624e16998c69ca4b3df4091a401e07cc4e29c63b88a243cc614b0b9aeaf" }, "downloads": -1, "filename": "rc_cli-0.2.4-py3-none-any.whl", "has_sig": false, "md5_digest": "c8fc2b2a4581ec5174101d7dbd4d541e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 36248, "upload_time": "2018-04-23T00:26:40", "url": "https://files.pythonhosted.org/packages/a9/ec/0cfa088dad43261719f83121bfc8efb516f3cf8f9d80e6565d15df96f582/rc_cli-0.2.4-py3-none-any.whl" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "6c1e174342fd71e7b2985e813ffc3d07", "sha256": "e9dc586a644489d3ef679be0dc5c7c41623b1ec08027e21c73061275e816f591" }, "downloads": -1, "filename": "rc_cli-0.2.5-py3-none-any.whl", "has_sig": false, "md5_digest": "6c1e174342fd71e7b2985e813ffc3d07", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 36245, "upload_time": "2018-04-23T00:27:49", "url": "https://files.pythonhosted.org/packages/b2/61/06e9bc248e4fd1e71221dc3b1d85aa672e7796aba1726eb99fb373ce63ad/rc_cli-0.2.5-py3-none-any.whl" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "a473c87756d288b06b02a96300f1e06e", "sha256": "b9b8707be5672bd22aef684599f5dd7ea1123e7d5a26d816e4a8960a9c6f423d" }, "downloads": -1, "filename": "rc_cli-0.2.8-py3-none-any.whl", "has_sig": false, "md5_digest": "a473c87756d288b06b02a96300f1e06e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 36245, "upload_time": "2018-05-06T03:05:10", "url": "https://files.pythonhosted.org/packages/08/f7/445ff4486d9b44f9bd60ab78f5e36d70cc044f9c6f4018e95ccc81c3fac1/rc_cli-0.2.8-py3-none-any.whl" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "231a014c3296c239e2044cb70723fc17", "sha256": "3d09ede595378630c47a184b51c1e96cd9ac705979cc8412efe7aef6a650d8a4" }, "downloads": -1, "filename": "rc_cli-0.2.9-py3-none-any.whl", "has_sig": false, "md5_digest": "231a014c3296c239e2044cb70723fc17", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 36299, "upload_time": "2018-05-07T21:54:34", "url": "https://files.pythonhosted.org/packages/86/55/86d5df1c78dcb16e418a1aa08cb2edcb7b6634830ac6981881c544970676/rc_cli-0.2.9-py3-none-any.whl" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "009831ab05a384a33a9d873850c193f8", "sha256": "2164fc2e071591d648fd75dbeff668bfff3aa2711fe5312f237a923fdae76840" }, "downloads": -1, "filename": "rc_cli-0.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "009831ab05a384a33a9d873850c193f8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 47934, "upload_time": "2019-03-25T01:34:28", "url": "https://files.pythonhosted.org/packages/a0/2f/8f1a99ac18279993d44546c709d59a4c4da4abf593b04801a93f5810d513/rc_cli-0.3.0-py3-none-any.whl" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "1a37802d64fc7e941f36b84fb5d930b4", "sha256": "fcf078b035eadeff1606179cb32f5e24f16e06b53d6d29f036a5f85c157d2b73" }, "downloads": -1, "filename": "rc_cli-0.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "1a37802d64fc7e941f36b84fb5d930b4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 58643, "upload_time": "2019-03-25T17:50:47", "url": "https://files.pythonhosted.org/packages/ac/d2/eb5cef6ac0156d497d41fa4467d6fd4bc6f9e157b37d68ba796c99104fd7/rc_cli-0.4.0-py3-none-any.whl" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "34f67a2bab05d05331a3fa061588b6af", "sha256": "952b96e8d7cfadba6007c671cf242a4ec4dba24cf518bb36585484a85a5bcf1e" }, "downloads": -1, "filename": "rc_cli-0.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "34f67a2bab05d05331a3fa061588b6af", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 58691, "upload_time": "2019-03-28T19:29:00", "url": "https://files.pythonhosted.org/packages/e2/67/25f05f09c6418e953a14952f1dd6eacaacc6e0a4e0629dd6eb1c70ea9644/rc_cli-0.4.1-py3-none-any.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "34f67a2bab05d05331a3fa061588b6af", "sha256": "952b96e8d7cfadba6007c671cf242a4ec4dba24cf518bb36585484a85a5bcf1e" }, "downloads": -1, "filename": "rc_cli-0.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "34f67a2bab05d05331a3fa061588b6af", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 58691, "upload_time": "2019-03-28T19:29:00", "url": "https://files.pythonhosted.org/packages/e2/67/25f05f09c6418e953a14952f1dd6eacaacc6e0a4e0629dd6eb1c70ea9644/rc_cli-0.4.1-py3-none-any.whl" } ] }