{ "info": { "author": "Qcloud", "author_email": "QcloudApi@tencent.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.1", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "=================================================\nTencent Cloud (aka QCloud) Command Line Interface\n=================================================\n\n.. image:: https://img.shields.io/pypi/v/qcloudcli.svg\n :target: https://pypi.python.org/pypi/qcloudcli\n :alt: pypi version\n.. image:: https://travis-ci.org/QcloudApi/qcloudcli.svg?branch=master\n :target: https://travis-ci.org/QcloudApi/qcloudcli\n :alt: Build Status\n\nTencent Cloud (aka QCloud) Command Line Interface qcloudcli is an open source tool built on top of the Tencent Cloud API that provides commands for interacting with Tencent Cloud services.\n\nIt works on Python versions:\n\n* 2.7.x and greater\n* 3.6.x and greater\n\n-------\nInstall\n-------\n\nThe recommended way to install qcloudcli is to use `pip `_:\n\n.. code-block:: sh\n\n $ pip install --user qcloudcli\n\n``--user`` option will install qcloudcli to current user path instead of system path, for Linux system, it might be ``~/.local``, which means it doesn't require ``sudo`` priviledge.\n\n.. attention::\n\n If you are in a ``virtualenv`` environment, the ``--user`` option should be removed.\n\nGet the version of qcloudcli:\n\n.. code-block:: sh\n\n $ qcloudcli --version\n\nto upgrade:\n\n.. code-block:: sh\n\n $ pip install --user --upgrade qcloudcli\n\nto remove:\n\n.. code-block:: sh\n\n $ pip uninstall --yes qcloudcli\n\n^^^^^^^^^^^^^^^^^^\nCommand Completion\n^^^^^^^^^^^^^^^^^^\n\nOn Unix-like systems, the qcloudcli includes a command-completion feature that enables you to use the TAB key to complete a partially typed command. This feature is not automatically installed, so you need to configure it manually.\n\n.. code-block:: sh\n\n $ complete -C qcloud_completer qcloudcli\n\nAdd it to your ``~/.bashrc`` to enable it by default.\n\n-----------\nUsage Guide\n-----------\n\n^^^^^^^^^^^^^\nConfiguration\n^^^^^^^^^^^^^\n\nqcloudcli needs account information to interact with Tencent Cloud Services. Log in Tencent Cloud `Console `_, shift to `API Credential Management `_ page to view your credentials, if the list is empty, you will need to create a new one. ``SecretId`` is used like your account name, ``SecretKey`` is used like your password, so keep in mind that never leak your ``SecretKey`` to others.\n\n.. attention::\n\n You might not be able to have such page in international site or translations in English version for now.\n\nRun ``qcloudcli congifure`` to enter interactive mode and provide information like this:\n\n.. code-block:: sh\n\n $ qcloudcli configure\n Qcloud API SecretId [None]: foo\n Qcloud API SecretKey [None]: bar\n Region Id(gz,hk,ca,sh,shjr,bj,sg) [None]: gz\n Output Format(json,table,text) [None]: json\n\nThese information will be stored in files under your home root path, for example, in Linux system, it will be ``~/.qcloudcli/configure`` and ``~/.qcloudcli/credentials``.\n\nThe content of ``~/.qcloudcli/configure`` in last example is::\n\n [default]\n output = json\n region = gz\n\nThe content of ``~/.qcloudcli/credentials`` in last example is::\n\n [default]\n qcloud_secretkey = bar\n qcloud_secretid = for\n\n.. attention::\n\n These information will be stored as plain text, it relies on your correct access control of your private home directory.\n\nIn Linux system, the default priviledge is::\n\n $ ls -l ~/.qcloudcli/\n total 8\n 4 -rw-rw-r-- 1 john john 36 Nov 29 23:35 configure\n 4 -rw------- 1 john john 55 Nov 29 23:35 credentials\n\n.. attention::\n\n Currently, these two configure files will not be removed when you uninstall qcloudcli, you will need to manually remove them.\n\n^^^^^^^^\nUse Help\n^^^^^^^^\n\nTo get available module list, including ``configure`` command, run::\n\n $ qcloudcli help\n\nTo get action list of specific module, for example, cvm (Cloud Virtual Machine), run::\n\n $ qcloudcli cvm help\n\nTo get parameter list of specific action, for example, DescribeInstances, run::\n\n $ qcloudcli cvm DescribeInstances help\n\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nSpecify Complex Object Paramters\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nTo specify base type parameters, like string and int, you can directly use it. For example, to get instance (virtual machine) list, use default API version, limit the return item to 10, run::\n\n $ qcloudcli cvm DescribeInstances --limit 10\n\nFor complex object parameters, like array and dictionary, you have to use json format string.\n\nFor example, to get instance list, use default API version, only query instances which id are ``qcvmf4b542ad7b4cd49f2db57a733368d5b1`` and ``qcvmaf636dd06a816765b4f2c51595f2d84d``, run::\n\n $ qcloudcli cvm DescribeInstances --instanceIds '[\"qcvmf4b542ad7b4cd49f2db57a733368d5b1\", \"qcvmaf636dd06a816765b4f2c51595f2d84d\"]'\n\nFor example, to get instance list, use API version 2017-03-12, with ``Filters`` parameter, only return instances in ap-guangzhou-2 zone, run::\n\n $ qcloudcli cvm DescribeInstances --Filters '[{\"Name\":\"zone\",\"Values\":[\"ap-guangzhou-2\"]}]'\n\nFor example, to create new instances, use API version 2017-03-12, a complex example might be::\n\n\n $ qcloudcli cvm RunInstances --Placement '{\"Zone\":\"ap-beijing-3\"}' --InstanceChargeType PREPAID --InstanceChargePrepaid '{\"Period\":1,\"RenewFlag\":\"NOTIFY_AND_AUTO_RENEW\"}' --ImageId img-dkwyg6sr --InstanceType S2.SMALL1 --SystemDisk '{\"DiskType\":\"CLOUD_BASIC\",\"DiskSize\":50}' --InternetAccessible '{\"InternetChargeType\":\"TRAFFIC_POSTPAID_BY_HOUR\",\"InternetMaxBandwidthOut\":2,\"PublicIpAssigned\":\"TRUE\"}' --InstanceName prod-jumpserver-01 --EnhancedService '{\"SecurityService\":{\"Enabled\":\"TRUE\"},\"MonitorService\":{\"Enabled\":\"TRUE\"}}' --InstanceCount 1 --VirtualPrivateCloud '{\"VpcId\":\"vpc-njkwg482\",\"SubnetId\":\"subnet-6rs8ienn\"}'\n\nNOTE: Here ``Placement`` has specify availability zone to be ``ap-beijing-3``, so the region value in ``~/.qcloudcli/configure`` must be ``bj``, or you can specify global parameter ``--RegionId ap-beijing`` to override configured value.\n\n^^^^^^^^^^^\nFilter Data\n^^^^^^^^^^^\n\nqcloudcli provides ``--filter`` option which bases on `jmespath `_ to filter returned data, it is pretty useful when you want to get specific data from a bunch of items. However, you need to know the exact structure of returned json format.\n\nFor example, to get security groups and only return security gourp id, run::\n\n $ qcloudcli dfw DescribeSecurityGroups --filter data[*].sgId\n [\n \"sg-icy671l9\",\n \"sg-o9rfv42p\",\n \"sg-pknfyaar\",\n \"sg-2rjokpt7\",\n \"sg-4ehjaoh3\"\n ]\n\n``*`` means get all elements.\n\nFor example, using CVM API version 2017-03-12, to get security groups id of a specific instance ins-od1laqxs, run::\n\n $ qcloudcli cvm DescribeInstances --InstanceIds '[\"ins-od1laqxs\"]' --filter Response.InstanceSet[0].SecurityGroupIds\n [\n \"sg-4ehjaoh3\"\n ]\n\nThe index ``0`` means get the first instance.\n\n^^^^^^^^^^^^^^^^^^^\nSpecify API Version\n^^^^^^^^^^^^^^^^^^^\n\nNOTE: New in version 1.9.0\n\nSome services of Tencent Cloud have multiple API versions, for example, CVM has a API version 2017-03-12, to use it, open ``~/.qcloudcli/configure`` and add the following content in profile section::\n\n api_versions =\n cvm = 2017-03-12\n\nIf the specified version doesn't exist, you will get an error when you run related commands.\nIf the service only has one version, then you don't need to add such configuration, please remove it.\nIf the service has multiple versions, and there is no such configuration, then the default one will be used.\n\n^^^^^^^^^^^^^^^\nUse HTTPS Proxy\n^^^^^^^^^^^^^^^\n\nNOTE: New in version 1.8.9\n\nIf you are in an environment behinds a proxy, and ``*.api.qcloud.com`` is not in the proxy white list, then you will need to configure HTTPS proxy to get qcloudcli work.\n\nCurrently, only verified in Linux and Windows system, with proxy doesn't require user name and password.\n\nIn Linux system, to set your temporary global proxy, run::\n\n $ export https_proxy=YourProxyRealHost:YourProxyRealPort\n\nPlease note that replace ``YourProxyRealHost`` and ``YourProxyRealPort`` with your real proxy information.\nYou can add it to your ``~/.bashrc`` to active it by default.\n\nIn Windows system, to set your temporary global proxy, run::\n\n > set https_proxy=YourProxyRealHost:YourProxyRealPort\n\nYou can add it to your system environment variables to active it by default.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/QcloudApi/qcloudcli.git", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "qcloudcli", "package_url": "https://pypi.org/project/qcloudcli/", "platform": "unix", "project_url": "https://pypi.org/project/qcloudcli/", "project_urls": { "Homepage": "https://github.com/QcloudApi/qcloudcli.git" }, "release_url": "https://pypi.org/project/qcloudcli/1.9.20/", "requires_dist": null, "requires_python": "", "summary": "Universal Command Line Environment for qcloud", "version": "1.9.20" }, "last_serial": 4463987, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "399b955d30ed9fa26e7cbc8273f820c3", "sha256": "fd28b9c81c381ac33d1b361e76e0c2fe0917b5bd4d336e9acea136f1f1f6d541" }, "downloads": -1, "filename": "qcloudcli-1.0.zip", "has_sig": false, "md5_digest": "399b955d30ed9fa26e7cbc8273f820c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 589705, "upload_time": "2016-09-29T13:27:05", "url": "https://files.pythonhosted.org/packages/84/7a/02d3af4234915e43dfd2ad68882c1c6310f8d24d403ab56ed6b4a7f032c7/qcloudcli-1.0.zip" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "452145a54eac48d8b48775b8f8eca539", "sha256": "0c9cb68f0105c3e500810d7d1a9c7445f885f3117fcf8e1df61fb80a2177e377" }, "downloads": -1, "filename": "qcloudcli-1.0.1.zip", "has_sig": false, "md5_digest": "452145a54eac48d8b48775b8f8eca539", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 688378, "upload_time": "2016-09-29T13:55:04", "url": "https://files.pythonhosted.org/packages/c6/50/c0b590251b75c1fb46e5435bdd7ce5546b070091825ab9361d4d2083058b/qcloudcli-1.0.1.zip" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "9020cd4fa61c5b899bc1e2194bbec5a4", "sha256": "0244f5e3a69aee90640101fcebffdbe29d8211cf7eb96c4ad6ea2a7ad745efbe" }, "downloads": -1, "filename": "qcloudcli-1.1.zip", "has_sig": false, "md5_digest": "9020cd4fa61c5b899bc1e2194bbec5a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 588858, "upload_time": "2016-09-29T13:58:09", "url": "https://files.pythonhosted.org/packages/58/4e/44b8ce088bd7b151e048b583159010564ecf3a63b5187825d2909d5ae2a6/qcloudcli-1.1.zip" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "9c6a66673ed7648d57d23720d9e0afe3", "sha256": "384d474ac2c914c48708d9007b496ab99a8e0c7cc538e0e25c1a8fb7314553a5" }, "downloads": -1, "filename": "qcloudcli-1.2.zip", "has_sig": false, "md5_digest": "9c6a66673ed7648d57d23720d9e0afe3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 588863, "upload_time": "2016-11-24T06:46:08", "url": "https://files.pythonhosted.org/packages/7f/e0/c9d1430da8cd9ac1d3360a840d86ad7b9b24195890eac8e6ebc122e092ba/qcloudcli-1.2.zip" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "78eeca408373883c73af501260488d1b", "sha256": "8ae3f740bad8079f2b95d8972cc1717d4f2dba8cd800dc6304ee4bf680e8e84b" }, "downloads": -1, "filename": "qcloudcli-1.3.zip", "has_sig": false, "md5_digest": "78eeca408373883c73af501260488d1b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 588863, "upload_time": "2016-11-24T12:27:28", "url": "https://files.pythonhosted.org/packages/81/64/707db01130d9639825dfde58bf5eb6ae69d3f8261b7f1eab195653034c09/qcloudcli-1.3.zip" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "3eb9654b130b11aacf72cca7e9b7ba8b", "sha256": "ee414c86ad10b8ad3c35f53c71c3d2b8623840193ff17181715c02c249ffc9a3" }, "downloads": -1, "filename": "qcloudcli-1.4.zip", "has_sig": false, "md5_digest": "3eb9654b130b11aacf72cca7e9b7ba8b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 588865, "upload_time": "2016-12-06T12:38:12", "url": "https://files.pythonhosted.org/packages/43/ab/5395779125ed5e5658151361715cbdcd7989048fd4cd34a615ff6716fde6/qcloudcli-1.4.zip" } ], "1.6": [ { "comment_text": "", "digests": { "md5": "70e7854d99f5fec8476d7a43f2c40b95", "sha256": "ddec2aa0bbba55015eae9535f6529b60d8f0f7e64a0b5d003ce5550d3c4878f2" }, "downloads": -1, "filename": "qcloudcli-1.6.zip", "has_sig": false, "md5_digest": "70e7854d99f5fec8476d7a43f2c40b95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 594151, "upload_time": "2017-03-30T10:27:58", "url": "https://files.pythonhosted.org/packages/db/c4/9bef69c29b4951d7429631a836a1c53ed30e4c1d3e211d23af10f6e6d01b/qcloudcli-1.6.zip" } ], "1.7": [ { "comment_text": "", "digests": { "md5": "b107ed3192d1c7b378ef89720e25ea28", "sha256": "af939339e84e23a694fa967d9d9ea84523c2485843d3066e428af9b34054050d" }, "downloads": -1, "filename": "qcloudcli-1.7.zip", "has_sig": false, "md5_digest": "b107ed3192d1c7b378ef89720e25ea28", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 633043, "upload_time": "2017-03-30T15:37:11", "url": "https://files.pythonhosted.org/packages/64/eb/4cabbd8b3bc02fe938020f0d0ed50ba0c9444f0d291ead148a0f1f66acfb/qcloudcli-1.7.zip" } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "080329ede08d51bd9989503e2114373c", "sha256": "f06991011c24e67a1d2fbd10ca83e527b3dfc1f1538b9b939262f7c9b716baa1" }, "downloads": -1, "filename": "qcloudcli-1.7.2.zip", "has_sig": false, "md5_digest": "080329ede08d51bd9989503e2114373c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 635746, "upload_time": "2017-04-06T13:22:29", "url": "https://files.pythonhosted.org/packages/05/76/9e7461469381dfd3c82148c85464d30a8b93b0292e055a50f9e4608d9722/qcloudcli-1.7.2.zip" } ], "1.7.3": [ { "comment_text": "", "digests": { "md5": "13fb09fbe621e915696d9afce3c6f63e", "sha256": "58108a5a82e68183eee629741edfaf2c4f866fef2bada061506e605cd35e26f6" }, "downloads": -1, "filename": "qcloudcli-1.7.3.zip", "has_sig": false, "md5_digest": "13fb09fbe621e915696d9afce3c6f63e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 635783, "upload_time": "2017-04-06T14:02:32", "url": "https://files.pythonhosted.org/packages/96/c8/656efd25b470290a9e25cab5dc8ea80deb318e7179e6859e3bdd43804789/qcloudcli-1.7.3.zip" } ], "1.7.4": [ { "comment_text": "", "digests": { "md5": "dd27e7aa4882fb5ff609545160c6957a", "sha256": "aeb3affc0d78018e2b4c14f4b30482d3d7a7cd6f084c573e800f270ebc38edca" }, "downloads": -1, "filename": "qcloudcli-1.7.4.zip", "has_sig": false, "md5_digest": "dd27e7aa4882fb5ff609545160c6957a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 645393, "upload_time": "2017-04-12T12:09:28", "url": "https://files.pythonhosted.org/packages/e4/0c/9fa55c405259aff96c136983a269fcdef97e4f1c35610770194dee705ae5/qcloudcli-1.7.4.zip" } ], "1.7.5": [ { "comment_text": "", "digests": { "md5": "5000de3ef486660b8a3ed56a275e2c6d", "sha256": "8abaf3327385ddf7deec7c4b8ae85eba7f8bcf692e0ea994369cfbc61367621e" }, "downloads": -1, "filename": "qcloudcli-1.7.5.zip", "has_sig": false, "md5_digest": "5000de3ef486660b8a3ed56a275e2c6d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 644870, "upload_time": "2017-04-12T12:13:30", "url": "https://files.pythonhosted.org/packages/00/64/3223b91debdd9e2b3b09799c08b202c3872c1354e9b827add6b0df2edb6f/qcloudcli-1.7.5.zip" } ], "1.7.7": [ { "comment_text": "", "digests": { "md5": "38633f9e4b20e3213bbade42faa14dc4", "sha256": "4079e3b6d105af1af3c3350b881030a495ac0a58c02f43d18ed5e088a237f7a2" }, "downloads": -1, "filename": "qcloudcli-1.7.7.zip", "has_sig": false, "md5_digest": "38633f9e4b20e3213bbade42faa14dc4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 641623, "upload_time": "2017-04-19T12:11:22", "url": "https://files.pythonhosted.org/packages/39/dd/97967ceed4494ca1ceb1133fc2f0489c6bb716b77fc7b8b6888cdb4028db/qcloudcli-1.7.7.zip" } ], "1.7.8": [ { "comment_text": "", "digests": { "md5": "641b4a053bfc1ef2fdc7f8b8e2d0623e", "sha256": "3d75db6cd65533c01dd9aece80737a1789fb81c4b979899f9c6fe7f814151f85" }, "downloads": -1, "filename": "qcloudcli-1.7.8.zip", "has_sig": false, "md5_digest": "641b4a053bfc1ef2fdc7f8b8e2d0623e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 641623, "upload_time": "2017-04-26T12:57:55", "url": "https://files.pythonhosted.org/packages/25/5c/8244637427c0c6d1bab609b71b75d00201ab00d768018fc59bf0bff71d76/qcloudcli-1.7.8.zip" } ], "1.7.9": [ { "comment_text": "", "digests": { "md5": "3b1ecb9ca9a0ce5271d439277e265b8a", "sha256": "05aba8a0c6696b2e01d68ddd35cd88829ed072db48b3e63fbaef8014397f8f08" }, "downloads": -1, "filename": "qcloudcli-1.7.9.zip", "has_sig": false, "md5_digest": "3b1ecb9ca9a0ce5271d439277e265b8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 660124, "upload_time": "2017-05-11T09:20:22", "url": "https://files.pythonhosted.org/packages/0d/a8/5739d5974a7bc78bb432989dd7df3e9765d415a63fc726bdaadce807d6b8/qcloudcli-1.7.9.zip" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "d4f82bf4abfcf5377cef2d6e71d4b2a7", "sha256": "0343104d2790562d44190b1ba8ed9f3dbf262bb7e1c5bc86d32afb06711c1cae" }, "downloads": -1, "filename": "qcloudcli-1.8.0.zip", "has_sig": false, "md5_digest": "d4f82bf4abfcf5377cef2d6e71d4b2a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 674305, "upload_time": "2017-06-07T09:42:03", "url": "https://files.pythonhosted.org/packages/fa/b1/3f75ac8d675448a19d437b331e39b7672406de10270b509f6df4221d77fe/qcloudcli-1.8.0.zip" } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "daf31c4b44e51c08f2abbfd97c03879e", "sha256": "44092fb0eb1cd200a83511dcd916a9dbeee8156adb18a63f7a063a7596a4ca9a" }, "downloads": -1, "filename": "qcloudcli-1.8.1.zip", "has_sig": false, "md5_digest": "daf31c4b44e51c08f2abbfd97c03879e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 674309, "upload_time": "2017-06-07T09:44:16", "url": "https://files.pythonhosted.org/packages/2c/62/7663e38effd6d7f643d94f1bb5fbdad97ca0166904c743ca64e80e96977f/qcloudcli-1.8.1.zip" } ], "1.8.10": [ { "comment_text": "", "digests": { "md5": "ddf3720401746ea89bae3e2e9a5a2a0a", "sha256": "a7f92142cfd363d8714487d87bea9d97358f450ec9204e38905b0c035eee3f16" }, "downloads": -1, "filename": "qcloudcli-1.8.10.tar.gz", "has_sig": false, "md5_digest": "ddf3720401746ea89bae3e2e9a5a2a0a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 124508, "upload_time": "2017-10-30T09:09:40", "url": "https://files.pythonhosted.org/packages/9b/3b/78db67d656e1ec2e36858e34bd7044699930a85f23c3dfaf6766741eac45/qcloudcli-1.8.10.tar.gz" } ], "1.8.2": [ { "comment_text": "", "digests": { "md5": "69aebedeb0a877dc23b984b858e85deb", "sha256": "dce0cb75a0b4d86aa0d5820370fdf0bd8ad7108ff6e6b3c09960f7a6ed79a2fa" }, "downloads": -1, "filename": "qcloudcli-1.8.2.tar.gz", "has_sig": false, "md5_digest": "69aebedeb0a877dc23b984b858e85deb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 353421, "upload_time": "2017-07-19T04:05:26", "url": "https://files.pythonhosted.org/packages/e9/3d/6017f3240e6930b8776a7c3b5c58113c60a4e83f9cdd643605216e71a265/qcloudcli-1.8.2.tar.gz" } ], "1.8.3": [ { "comment_text": "", "digests": { "md5": "871092bbfa199c982b0c09e70eb12aa5", "sha256": "38de131adabe4a6de844c46cfe254459f63f4cff549aaa0764d44d9f8bd490ee" }, "downloads": -1, "filename": "qcloudcli-1.8.3.tar.gz", "has_sig": false, "md5_digest": "871092bbfa199c982b0c09e70eb12aa5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 119950, "upload_time": "2017-08-21T07:48:22", "url": "https://files.pythonhosted.org/packages/65/28/67d5756d805b7e3d1673a507ff97d1733f0ef497486eda6bac591c673b64/qcloudcli-1.8.3.tar.gz" } ], "1.8.4": [ { "comment_text": "", "digests": { "md5": "bc0c238370ee039a214d3f87bb481218", "sha256": "e327c9339f8234e92c2aba4bf7ddb14b16215e732ec05c169a1c0f378334017b" }, "downloads": -1, "filename": "qcloudcli-1.8.4.tar.gz", "has_sig": false, "md5_digest": "bc0c238370ee039a214d3f87bb481218", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117997, "upload_time": "2017-08-25T07:20:43", "url": "https://files.pythonhosted.org/packages/e3/08/aa965b3171aefcb9c6ee2a4b1fc02f9da0654c393e42ff8973aa6ef82f4a/qcloudcli-1.8.4.tar.gz" } ], "1.8.5": [ { "comment_text": "", "digests": { "md5": "eb635dcc2109efc16cc7d46b3206fe8c", "sha256": "035c24b111132e18036327ae26bcb7355b7c4a67319ebcbee648e9af17e6e135" }, "downloads": -1, "filename": "qcloudcli-1.8.5.tar.gz", "has_sig": false, "md5_digest": "eb635dcc2109efc16cc7d46b3206fe8c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117776, "upload_time": "2017-08-31T03:10:53", "url": "https://files.pythonhosted.org/packages/16/27/4d6593e71370d9a3706b49be62981871eb42fe53a475894412065b9596c1/qcloudcli-1.8.5.tar.gz" } ], "1.8.6": [ { "comment_text": "", "digests": { "md5": "e54d1438989fb33fbf61174c76007455", "sha256": "bcfc1d0ed34dd5441aec03b0ef89979e3b540097f7b152fa2c4f389d317a4958" }, "downloads": -1, "filename": "qcloudcli-1.8.6.tar.gz", "has_sig": false, "md5_digest": "e54d1438989fb33fbf61174c76007455", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 118035, "upload_time": "2017-09-13T03:37:49", "url": "https://files.pythonhosted.org/packages/c0/d8/3ec569c032c39a65cda98fa968ceaa6494c0647e515ce63f0279f3872766/qcloudcli-1.8.6.tar.gz" } ], "1.8.7": [ { "comment_text": "", "digests": { "md5": "59b69dd301e607bafd6728f49e8ca48b", "sha256": "f37232571d35295680dc6c505527408c4b09bdd4ac0781dfe224fc12f56344b1" }, "downloads": -1, "filename": "qcloudcli-1.8.7.tar.gz", "has_sig": false, "md5_digest": "59b69dd301e607bafd6728f49e8ca48b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 118619, "upload_time": "2017-09-21T11:44:15", "url": "https://files.pythonhosted.org/packages/e6/16/855f3aefdfbec49d5faf48bb530f788be37a6eddcd2cca009fc5fbd0a6be/qcloudcli-1.8.7.tar.gz" } ], "1.8.8": [ { "comment_text": "", "digests": { "md5": "6b3a249a463d323dde88f0b10af7dea7", "sha256": "36779a1aaea5b1ebee1b0072f7a50546d6a24b74e44b3aa7fc292b565802da54" }, "downloads": -1, "filename": "qcloudcli-1.8.8.tar.gz", "has_sig": false, "md5_digest": "6b3a249a463d323dde88f0b10af7dea7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 124691, "upload_time": "2017-10-09T09:04:59", "url": "https://files.pythonhosted.org/packages/04/c5/aeed5274ed0fd0d0bb57904963b5f196998586f9a709f930093073c9a671/qcloudcli-1.8.8.tar.gz" } ], "1.8.9": [ { "comment_text": "", "digests": { "md5": "30b88001b0fda401673972d326d069d1", "sha256": "0a5daf890cb27e81dae283389bb95bafc9b4c91e0a5e425c8f59c19d2300e300" }, "downloads": -1, "filename": "qcloudcli-1.8.9.tar.gz", "has_sig": false, "md5_digest": "30b88001b0fda401673972d326d069d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 124288, "upload_time": "2017-10-25T03:17:54", "url": "https://files.pythonhosted.org/packages/52/6c/b2e28edb2fe994d51357939e3d6a2fbf31d5bd713bb90764d1c53ba427fd/qcloudcli-1.8.9.tar.gz" } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "743f22ee0fd93ad0da98e9d2495fed47", "sha256": "088a0a03320723cbeb9a37df43d020453e5c43b07c3c16ef961bd44478ef4fd1" }, "downloads": -1, "filename": "qcloudcli-1.9.0.tar.gz", "has_sig": false, "md5_digest": "743f22ee0fd93ad0da98e9d2495fed47", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 136061, "upload_time": "2017-11-06T04:25:08", "url": "https://files.pythonhosted.org/packages/c5/5d/a93756ed440407342e9e1943d86d22b1ec333df598b5f23559c45efa2be8/qcloudcli-1.9.0.tar.gz" } ], "1.9.1": [ { "comment_text": "", "digests": { "md5": "07d8f1a6ad4749786515f788710eec0c", "sha256": "f41578d0f2b8e850cf81dc961dc43ea43b39621682ed6888c9e94f01c9f8efcc" }, "downloads": -1, "filename": "qcloudcli-1.9.1.tar.gz", "has_sig": false, "md5_digest": "07d8f1a6ad4749786515f788710eec0c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 135374, "upload_time": "2017-11-22T12:07:26", "url": "https://files.pythonhosted.org/packages/1a/b1/199940dc9c758f177dd43418af83f08e6084c310658493e40ac4a9f9eb1b/qcloudcli-1.9.1.tar.gz" } ], "1.9.10": [ { "comment_text": "", "digests": { "md5": "61e8326a0012f842d3a5035e9bd3eb12", "sha256": "0cc23083dc44e051b9990bd1296741e1903bde18f0dd5d8cd01c02bd6a4be038" }, "downloads": -1, "filename": "qcloudcli-1.9.10.tar.gz", "has_sig": false, "md5_digest": "61e8326a0012f842d3a5035e9bd3eb12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 144371, "upload_time": "2017-12-28T03:50:20", "url": "https://files.pythonhosted.org/packages/89/6f/e9dbc4d3393c1d640b5306d7f8f1af9ab67adf8726a73c046e416593420a/qcloudcli-1.9.10.tar.gz" } ], "1.9.11": [ { "comment_text": "", "digests": { "md5": "86960f515706c590faf482980a65777a", "sha256": "4a981210e291ae96c2bbd9318dbd206325334eaed54d01ca4fa4e1e8b2315c9c" }, "downloads": -1, "filename": "qcloudcli-1.9.11.tar.gz", "has_sig": false, "md5_digest": "86960f515706c590faf482980a65777a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 144309, "upload_time": "2018-01-04T02:59:12", "url": "https://files.pythonhosted.org/packages/fb/53/df86ea308ef7fc45ae013b42b8b5eb187b1881cf424d7fefe74167745827/qcloudcli-1.9.11.tar.gz" } ], "1.9.12": [ { "comment_text": "", "digests": { "md5": "ef92d11d18eacaa608f834d78889876b", "sha256": "610d43e8b7c32114fff45e2104b223e4d06e9094c4f314bd05fefb073128a9e1" }, "downloads": -1, "filename": "qcloudcli-1.9.12.tar.gz", "has_sig": false, "md5_digest": "ef92d11d18eacaa608f834d78889876b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 144491, "upload_time": "2018-01-17T13:38:16", "url": "https://files.pythonhosted.org/packages/ed/fc/49afcd0ca03160752c748f0498d3fe8c05b9150bc7675411f2ca42ac9a04/qcloudcli-1.9.12.tar.gz" } ], "1.9.13": [ { "comment_text": "", "digests": { "md5": "1dbe9cbe2c0478c4867c98356b094de8", "sha256": "5646c34c58b71947cef3c2d31026890becec977a4290990df9813a5fc592c1dc" }, "downloads": -1, "filename": "qcloudcli-1.9.13.tar.gz", "has_sig": false, "md5_digest": "1dbe9cbe2c0478c4867c98356b094de8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 144893, "upload_time": "2018-01-26T08:05:13", "url": "https://files.pythonhosted.org/packages/c3/8f/f5a1bda97b488f523c5dd27b3914b1a0541c6604785c05296d600cae1441/qcloudcli-1.9.13.tar.gz" } ], "1.9.14": [ { "comment_text": "", "digests": { "md5": "c714bb90f1b652cb82187982caa5266c", "sha256": "c4e19365df2c5ded47acb227cde242d875090da307aba4e571d7d3d42b853015" }, "downloads": -1, "filename": "qcloudcli-1.9.14.tar.gz", "has_sig": false, "md5_digest": "c714bb90f1b652cb82187982caa5266c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 146026, "upload_time": "2018-02-07T12:10:57", "url": "https://files.pythonhosted.org/packages/a4/02/315174387d67f0cf08b011c7d597e4235ee3d2272614118a4e3f68cee8c7/qcloudcli-1.9.14.tar.gz" } ], "1.9.15": [ { "comment_text": "", "digests": { "md5": "97aa68d0676840a67eab4faf3ff63750", "sha256": "4e3d594a5999fb4dd8ae681939c3ed1b33b73f435cd5412df17c135b26df1271" }, "downloads": -1, "filename": "qcloudcli-1.9.15.tar.gz", "has_sig": false, "md5_digest": "97aa68d0676840a67eab4faf3ff63750", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 146030, "upload_time": "2018-02-07T12:10:44", "url": "https://files.pythonhosted.org/packages/82/27/ca06b187b35371d395d374c5189d6e9049509a6a2c67d82e159418ebe5d5/qcloudcli-1.9.15.tar.gz" } ], "1.9.16": [ { "comment_text": "", "digests": { "md5": "5c04aa64cccf929877c0054a9a298cb9", "sha256": "605f5def9014565727c06e6f5e1aad6d7c2b39306b2275c546f32210623bc12b" }, "downloads": -1, "filename": "qcloudcli-1.9.16.tar.gz", "has_sig": false, "md5_digest": "5c04aa64cccf929877c0054a9a298cb9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 146966, "upload_time": "2018-03-09T07:22:34", "url": "https://files.pythonhosted.org/packages/76/89/2ea4262254ea9b487e78d85801846095a297ffd0c475edf6df0d8f1361d4/qcloudcli-1.9.16.tar.gz" } ], "1.9.17": [ { "comment_text": "", "digests": { "md5": "bc8c9d334b50d037fb77403b454fb6f8", "sha256": "99323af2b9d3e70f113414a1b32900b704c7fa06c8d300db8028aaedb8054b65" }, "downloads": -1, "filename": "qcloudcli-1.9.17.tar.gz", "has_sig": false, "md5_digest": "bc8c9d334b50d037fb77403b454fb6f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 149555, "upload_time": "2018-05-09T08:04:23", "url": "https://files.pythonhosted.org/packages/dc/37/57288dc3893acf1610ec59524f4baba6aa9c150f1b186f3b324d3ae3af5c/qcloudcli-1.9.17.tar.gz" } ], "1.9.18": [ { "comment_text": "", "digests": { "md5": "216453ddcefa48662e729fdc36cc825e", "sha256": "1f46b3e5b03057d54f6e0d87954adc318ac9e83023ad4d3676b26a654a519156" }, "downloads": -1, "filename": "qcloudcli-1.9.18.tar.gz", "has_sig": false, "md5_digest": "216453ddcefa48662e729fdc36cc825e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 149671, "upload_time": "2018-05-29T09:30:32", "url": "https://files.pythonhosted.org/packages/c0/97/e9fe65aa825fb1d68aee89d834fb0cc70b6bc2ac7ffbf3e70040d7d50cb2/qcloudcli-1.9.18.tar.gz" } ], "1.9.19": [ { "comment_text": "", "digests": { "md5": "e74bca16a18fa1da2bf377029993ab42", "sha256": "9e4def94a64ceb2de8566cafa4aebb10aa642e8445f34e20621a107d4e8acd93" }, "downloads": -1, "filename": "qcloudcli-1.9.19.tar.gz", "has_sig": false, "md5_digest": "e74bca16a18fa1da2bf377029993ab42", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 153949, "upload_time": "2018-07-11T08:31:10", "url": "https://files.pythonhosted.org/packages/0f/fd/20b5ea4bb08fc028a32f446d44ef5fe5a35cc573b68ccb689a2bb113cfdf/qcloudcli-1.9.19.tar.gz" } ], "1.9.2": [ { "comment_text": "", "digests": { "md5": "40c151ed96f841620812e0e987489d03", "sha256": "8f643658f15906f5b1de39ed71b8eaf305b0a5554d83dce5c8ba7e0f9f337a52" }, "downloads": -1, "filename": "qcloudcli-1.9.2.tar.gz", "has_sig": false, "md5_digest": "40c151ed96f841620812e0e987489d03", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 135659, "upload_time": "2017-11-24T07:02:58", "url": "https://files.pythonhosted.org/packages/d5/6e/37acddce946ff17d5c237702fe527c878675a66cc1c704c9433793d2ad4f/qcloudcli-1.9.2.tar.gz" } ], "1.9.20": [ { "comment_text": "", "digests": { "md5": "b179f002c17f0d1a02f9087dafbc8b29", "sha256": "287bf3ae538fce0bcc69e0cada1b4ee5e00731580066269c4d82110db22f1969" }, "downloads": -1, "filename": "qcloudcli-1.9.20.tar.gz", "has_sig": false, "md5_digest": "b179f002c17f0d1a02f9087dafbc8b29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 155303, "upload_time": "2018-11-08T03:31:01", "url": "https://files.pythonhosted.org/packages/87/a9/ea70bcaaf10b25f73577752d89a5b1395fe61a9d7ac33cb5ca8776ef600d/qcloudcli-1.9.20.tar.gz" } ], "1.9.3": [ { "comment_text": "", "digests": { "md5": "a0f04f365f349e59e33e5dc0207d4fc3", "sha256": "74aecb431a4a86e3c5e9f41a4c9aebccd2d6716ee296fa295f8d6ecb46391a40" }, "downloads": -1, "filename": "qcloudcli-1.9.3.tar.gz", "has_sig": false, "md5_digest": "a0f04f365f349e59e33e5dc0207d4fc3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 135694, "upload_time": "2017-11-24T07:49:45", "url": "https://files.pythonhosted.org/packages/4f/4f/a990b3b9fd27545a4acd7639ab67c49a4a1b1ae78ded9c6a5beaaa55f39f/qcloudcli-1.9.3.tar.gz" } ], "1.9.4": [ { "comment_text": "", "digests": { "md5": "f05c8f4a737c66d12f8aeb84bda2206e", "sha256": "a6024326aef9cf67a88201dea99b65aa0d799672abbe6548488fed807d7dcc6e" }, "downloads": -1, "filename": "qcloudcli-1.9.4.tar.gz", "has_sig": false, "md5_digest": "f05c8f4a737c66d12f8aeb84bda2206e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 135751, "upload_time": "2017-11-29T09:13:21", "url": "https://files.pythonhosted.org/packages/e1/71/19dc1337c44708d07b0c40aaed07b2dca310fb8d904ef4df56da5f09d499/qcloudcli-1.9.4.tar.gz" } ], "1.9.5": [ { "comment_text": "", "digests": { "md5": "4bd283f405b8c2e28303d3ef07d07c4b", "sha256": "bff562841e2656b41d5a4272cbdd3d91fcde2d8320fba21f4e609f9104049c99" }, "downloads": -1, "filename": "qcloudcli-1.9.5.tar.gz", "has_sig": false, "md5_digest": "4bd283f405b8c2e28303d3ef07d07c4b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 142293, "upload_time": "2017-12-01T06:58:34", "url": "https://files.pythonhosted.org/packages/cd/0e/016dc823858d7bcf28c821e1af040af3bfe11efbd34e85f095e729f71366/qcloudcli-1.9.5.tar.gz" } ], "1.9.6": [ { "comment_text": "", "digests": { "md5": "6566088c4fd5d4475755c9d65f278962", "sha256": "4b2aeb9f429b20e3d73572ab34c21a4a88865288ae867fbaa1f4ae6f29f852bc" }, "downloads": -1, "filename": "qcloudcli-1.9.6.tar.gz", "has_sig": false, "md5_digest": "6566088c4fd5d4475755c9d65f278962", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 142527, "upload_time": "2017-12-06T03:30:01", "url": "https://files.pythonhosted.org/packages/5e/56/36dd152f99626adca1ff5ccf20965f16353d0b4d14b51f01801d9fdbce35/qcloudcli-1.9.6.tar.gz" } ], "1.9.7": [ { "comment_text": "", "digests": { "md5": "fa28eb117927c979a187409c57d12a71", "sha256": "dab9bd6f26f7a1ea38e4603b82aefca206981e82316ebcd65156d134228b6379" }, "downloads": -1, "filename": "qcloudcli-1.9.7.tar.gz", "has_sig": false, "md5_digest": "fa28eb117927c979a187409c57d12a71", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 142500, "upload_time": "2017-12-06T04:08:19", "url": "https://files.pythonhosted.org/packages/ee/2d/91e4965dd32f5dedd786337baca3aa80a47d900d66469ef29efc6a53c83e/qcloudcli-1.9.7.tar.gz" } ], "1.9.8": [ { "comment_text": "", "digests": { "md5": "1dd157ab1863fbc26b68c0e02a4db7e6", "sha256": "bab1583b3f829ae1ea99ec51363cad5db29c0805fd0c4a7f1dc196110c3896e3" }, "downloads": -1, "filename": "qcloudcli-1.9.8.tar.gz", "has_sig": false, "md5_digest": "1dd157ab1863fbc26b68c0e02a4db7e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 143829, "upload_time": "2017-12-13T15:21:19", "url": "https://files.pythonhosted.org/packages/ed/02/3a8fb4c0ccf7ffae1e719879192ae16f3e384c66bb4cbfafba2cf9ac0ac8/qcloudcli-1.9.8.tar.gz" } ], "1.9.9": [ { "comment_text": "", "digests": { "md5": "6ad352029465b6f43418ff6352d9ccf1", "sha256": "0b386ea870c34b91945e12759e4b229ab1ed0f026f1d09eda27cb41325e66c8f" }, "downloads": -1, "filename": "qcloudcli-1.9.9.tar.gz", "has_sig": false, "md5_digest": "6ad352029465b6f43418ff6352d9ccf1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 144042, "upload_time": "2017-12-20T02:47:42", "url": "https://files.pythonhosted.org/packages/b6/97/e03b1aec7af207ba1a7348dccaea4dbc1f9b5faf627290d1d58267a5407c/qcloudcli-1.9.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b179f002c17f0d1a02f9087dafbc8b29", "sha256": "287bf3ae538fce0bcc69e0cada1b4ee5e00731580066269c4d82110db22f1969" }, "downloads": -1, "filename": "qcloudcli-1.9.20.tar.gz", "has_sig": false, "md5_digest": "b179f002c17f0d1a02f9087dafbc8b29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 155303, "upload_time": "2018-11-08T03:31:01", "url": "https://files.pythonhosted.org/packages/87/a9/ea70bcaaf10b25f73577752d89a5b1395fe61a9d7ac33cb5ca8776ef600d/qcloudcli-1.9.20.tar.gz" } ] }