{ "info": { "author": "Microsoft Corporation", "author_email": "azurekeyvault@microsoft.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "Microsoft Azure SDK for Python\n==============================\n\nThis is the Microsoft Azure Key Vault Client Library.\n\nThis package has been tested with Python 2.7, 3.4, 3.5 and 3.6.\n\nFor a more complete set of Azure libraries, see the `azure `__ bundle package.\n\n\nCompatibility\n=============\n\n**IMPORTANT**: If you have an earlier version of the azure package\n(version < 1.0), you should uninstall it before installing this package.\n\nYou can check the version using pip:\n\n.. code:: shell\n\n pip freeze\n\nIf you see azure==0.11.0 (or any version below 1.0), uninstall it first:\n\n.. code:: shell\n\n pip uninstall azure\n\n\nUsage\n=====\n\nFor code examples, see `Key Vault\n`__\non docs.microsoft.com.\n\n\nProvide Feedback\n================\n\nIf you encounter any bugs or have suggestions, please file an issue in the\n`Issues `__\nsection of the project.\n\n\n.. :changelog:\n\nRelease History\n===============\n1.1.0 (2018-08-07)\n++++++++++++++++++++\n\n* Adding support for multi-api and API profiles\n\n1.0.0 (2018-06-27)\n++++++++++++++++++++\n\n* Moving azure-keyvault to stable API version 7.0\n* Adding support for EC certificate create and import\n* Renaming curve SECP256K1 and algorithm ECDSA256 to P-256K and ES256K respectively\n\n1.0.0b1 (2018-04-10)\n++++++++++++++++++++\n\n* Upgraded to autorest 3.0 generated code\n\n**General Breaking changes**\n\nThis version uses a next-generation code generator that *might* introduce breaking changes.\n\n- Model signatures now use only keyword-argument syntax. All positional arguments must be re-written as keyword-arguments.\n To keep auto-completion in most cases, models are now generated for Python 2 and Python 3. Python 3 uses the \"*\" syntax for keyword-only arguments.\n- Enum types now use the \"str\" mixin (class AzureEnum(str, Enum)) to improve the behavior when unrecognized enum values are encountered.\n While this is not a breaking change, the distinctions are important, and are documented here:\n https://docs.python.org/3/library/enum.html#others\n At a glance:\n\n - \"is\" should not be used at all.\n - \"format\" will return the string value, where \"%s\" string formatting will return `NameOfEnum.stringvalue`. Format syntax should be prefered.\n\n- New Long Running Operation:\n\n - Return type changes from `msrestazure.azure_operation.AzureOperationPoller` to `msrest.polling.LROPoller`. External API is the same.\n - Return type is now **always** a `msrest.polling.LROPoller`, regardless of the optional parameters used.\n - The behavior has changed when using `raw=True`. Instead of returning the initial call result as `ClientRawResponse`,\n without polling, now this returns an LROPoller. After polling, the final resource will be returned as a `ClientRawResponse`.\n - New `polling` parameter. The default behavior is `Polling=True` which will poll using ARM algorithm. When `Polling=False`,\n the response of the initial call will be returned without polling.\n - `polling` parameter accepts instances of subclasses of `msrest.polling.PollingMethod`.\n - `add_done_callback` will no longer raise if called after polling is finished, but will instead execute the callback right away.\n\n\n1.0.0a2 (2018-03-28)\n++++++++++++++++++++\n\n* Upgrading to API version 7.0-preview\n* Adding elliptic curve key support\n* Adding managed storage account key backup, restore and soft delete support\n* Breaking update to managed storage account SasDefinition creation\n* Adding certificate backup and restore support\n* Adding certificate transparency\n\n1.0.0a1 (2018-01-25)\n++++++++++++++++++++\n* Added message encryption support for message encryption enabled vaults\n\n0.3.7 (2017-09-22)\n++++++++++++++++++\n\n* Workaround for Azure Stack ADFS authentication issue https://github.com/Azure/azure-cli/issues/4448\n\n0.3.6 (2017-08-16)\n++++++++++++++++++\n\n* Updated KeyVaultClient to accept both KeyVaultAuthentication and azure.common.credentials instances for authentication\n\n0.3.5 (2017-06-23)\n++++++++++++++++++\n\n* Fix: https://github.com/Azure/azure-sdk-for-python/issues/1159\n* KeyVaultId refactoring\n - adding object specific id classes to make usage more uniform with other key vault SDKs\n - added storage account id and storage sas definition id parsing and formatting\n\n0.3.4 (2017-06-07)\n++++++++++++++++++\n\n* Adding Preview Features\n - Managed Storage Account keys for managing storage credentials and provisioning SAS tokens\n - Key Vault \"Soft Delete\" allowing for recovery of deleted keys, secrets and certificates\n - Secret Backup and Restore for secret recovery and migration\n\n0.3.3 (2017-05-10)\n++++++++++++++++++\n\n* Reverting to 0.3.0, since behavior of 0.3.2 is not satisfaying either.\n\n0.3.2 (2017-05-09)\n++++++++++++++++++\n\n* Fix critical regression on 0.3.1 (#1157)\n* Now the client respects 'REQUESTS_CA_BUNDLE' and 'CURL_CA_BUNDLE'\n\n0.3.1 (2017-05-09)\n++++++++++++++++++\n\n* Support for REQUESTS_CA_BUNDLE (#1154)\n\n0.3.0 (2017-05-08)\n++++++++++++++++++\n\n* Moving KeyVaultClient class to the azure.keyvault namespace\n* Moving model classes to the azure.keyvault.models namespace\n* Deprecating 'generated' namespaces azure.keyvault.generated and azure.keyvault.generated.models\n* Exposed KeyVaultId class through azure.keyvault namespace\n* Moving identifier parsing methods to static methods on KeyVaultId class\n* Removing convenience overridden methods from KeyVaultClient\n - update_key(self, key_identifier, ...\n - get_key(self, key_identifier, ...\n - encrypt(self, key_identifier, ...\n - decrypt(self, key_identifier, ...\n - sign(self, key_identifier, ...\n - verify(self, key_identifier, ...\n - wrap_key(self, key_identifier, ...\n - unwrap_key(self, key_identifier, ...\n - update_secret(self, secret_identifer, ...\n - get_secret(self, secret_identifer, ...\n - get_certificate(self, certificate_identifier, ...\n\n0.2.0 (2017-04-19)\n++++++++++++++++++\n\n**Bugfixes**\n\n- Fix possible deserialization error, but updating from list to list when applicable\n\n**Notes**\n\n- This wheel package is now built with the azure wheel extension\n\n0.1.0 (2016-12-29)\n++++++++++++++++++\n\n* Initial Release\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Azure/azure-sdk-for-python", "keywords": "", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "azure-keyvault", "package_url": "https://pypi.org/project/azure-keyvault/", "platform": "", "project_url": "https://pypi.org/project/azure-keyvault/", "project_urls": { "Homepage": "https://github.com/Azure/azure-sdk-for-python" }, "release_url": "https://pypi.org/project/azure-keyvault/1.1.0/", "requires_dist": [ "msrest (>=0.5.0)", "msrestazure (<2.0.0,>=0.4.32)", "azure-common (~=1.1)", "cryptography (>=2.1.4)", "requests (>=2.18.4)", "azure-nspkg (>=2.0.0)" ], "requires_python": "", "summary": "Microsoft Azure Key Vault Client Library for Python", "version": "1.1.0" }, "last_serial": 4582788, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "922b1bfcb110d88dbe9e8b1ca8100a98", "sha256": "f379ab8643a78f77381d8fb34518e812925d4e3a4945a0174774831ec7ae22d1" }, "downloads": -1, "filename": "azure_keyvault-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "922b1bfcb110d88dbe9e8b1ca8100a98", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 68310, "upload_time": "2016-12-29T19:05:10", "url": "https://files.pythonhosted.org/packages/c5/99/b3744cc35d148b78eef7f3f53457e5acbb6684402646905c6d9063ee1e0a/azure_keyvault-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "25b29569b5f034e02825bff02dac027b", "sha256": "5f86f02975777d459a5c56ba622f048deb5eb2dc86d79b621ce4354e2cf24882" }, "downloads": -1, "filename": "azure-keyvault-0.1.0.zip", "has_sig": false, "md5_digest": "25b29569b5f034e02825bff02dac027b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70855, "upload_time": "2016-12-29T19:05:13", "url": "https://files.pythonhosted.org/packages/09/a2/6ed8bf226277144ee276c455ca00e74c4b2dc5d0435eb087de0265b5761e/azure-keyvault-0.1.0.zip" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "55b2c982c579a1662cab8bd7202bffef", "sha256": "3c79beda21f597b85ef09e6c84b9fc348e289ea4b0d4eb8ae8fb1ae387cd51b6" }, "downloads": -1, "filename": "azure_keyvault-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "55b2c982c579a1662cab8bd7202bffef", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 67950, "upload_time": "2017-04-19T16:21:07", "url": "https://files.pythonhosted.org/packages/bd/4a/68598b42e6d3aba552b96c60117afd682ff894c7aec417a9a628300f222d/azure_keyvault-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "05b72fb8e8070a76efd9d897005f82f9", "sha256": "fd4ee8437d75e3718eacacd67785cdb11754208475b1b24668d3a62f8a27f558" }, "downloads": -1, "filename": "azure-keyvault-0.2.0.zip", "has_sig": false, "md5_digest": "05b72fb8e8070a76efd9d897005f82f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77576, "upload_time": "2017-04-19T16:21:10", "url": "https://files.pythonhosted.org/packages/50/23/0aceb2272ca6d3e3d02ac949470166b528dd753f1fa9c873611051997a1e/azure-keyvault-0.2.0.zip" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "0b4e04d07a99a38452ba47bec3cd27ef", "sha256": "cdbdca13e6423b3d1db6e4ac7ebf6bd2340ec00fad356ec549882251a40e9d11" }, "downloads": -1, "filename": "azure_keyvault-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0b4e04d07a99a38452ba47bec3cd27ef", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 68567, "upload_time": "2017-05-09T01:46:22", "url": "https://files.pythonhosted.org/packages/14/bc/295c78ee0dc2f2d3220d4b4ea65f14f79a6f75f5115aab403468e9a15377/azure_keyvault-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0b39ef7a34e1344910a471642f947b6c", "sha256": "c74dab052e0fab66b1457a1025f0c0a5cd8371e46cfa40679c53b03dbce585a9" }, "downloads": -1, "filename": "azure-keyvault-0.3.0.zip", "has_sig": false, "md5_digest": "0b39ef7a34e1344910a471642f947b6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78408, "upload_time": "2017-05-09T01:46:24", "url": "https://files.pythonhosted.org/packages/68/fc/0d6d8dedb5149950b321298338968608444f437b943c8306f51a72b6099f/azure-keyvault-0.3.0.zip" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "33bcd70293840b41feff84aab883b725", "sha256": "cca2b9734e9e46be83fe9142a805fd85f74a81e2adca2181910b69b35100569f" }, "downloads": -1, "filename": "azure_keyvault-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "33bcd70293840b41feff84aab883b725", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 68653, "upload_time": "2017-05-09T18:25:06", "url": "https://files.pythonhosted.org/packages/03/b7/126722b7e2b57f0bc1dda1ea15830a35889051b22688f681f60b37736691/azure_keyvault-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "34aef001eef62ec40618d25213ba1434", "sha256": "b5fc6ec7c69a7404b3d43d98bed2a4ebc0d3d71687fbaf7ca695d2e488b30514" }, "downloads": -1, "filename": "azure-keyvault-0.3.1.zip", "has_sig": false, "md5_digest": "34aef001eef62ec40618d25213ba1434", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78534, "upload_time": "2017-05-09T18:25:08", "url": "https://files.pythonhosted.org/packages/ff/cc/a6de5c6e9b4b41f50503970582fe9b04191a61ae7b6d63a4b1d85d4a4f70/azure-keyvault-0.3.1.zip" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "f0b6ba5272cbc2888ffec27f312010d5", "sha256": "68fd39df45da83c70befd99bba59bbc4b251a136f0b7bc0c0b48483352a7523a" }, "downloads": -1, "filename": "azure_keyvault-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f0b6ba5272cbc2888ffec27f312010d5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 68818, "upload_time": "2017-05-10T00:39:27", "url": "https://files.pythonhosted.org/packages/bd/96/39269a7d8825838ff0f4d9d278717264e3e29decd8fd3049585dd3574378/azure_keyvault-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "49f82c7ee39ef219c3ea320ce2929795", "sha256": "4a3e96fb5c9f698c3974bd9b26147bbdb3cfd5d7115f7d3b596d327e83ba27bc" }, "downloads": -1, "filename": "azure-keyvault-0.3.2.zip", "has_sig": false, "md5_digest": "49f82c7ee39ef219c3ea320ce2929795", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78766, "upload_time": "2017-05-10T00:39:29", "url": "https://files.pythonhosted.org/packages/69/3a/aaece6c160f2b8a03e3296efb91f0fadbdd70290da5ba10d0b8a42ec2ede/azure-keyvault-0.3.2.zip" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "4a6fdb2e7dd2a5db6c360092f12e8f24", "sha256": "5660dbebee526eac300e8fcdbed2cd175b0d0a11c4dac8cb66f71f11394d0b7e" }, "downloads": -1, "filename": "azure_keyvault-0.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4a6fdb2e7dd2a5db6c360092f12e8f24", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 68857, "upload_time": "2017-05-11T00:41:09", "url": "https://files.pythonhosted.org/packages/08/da/575a608ff954b9794a8fd2bc63e2dac5f9b8dec400e0a436cd7c41e55d6e/azure_keyvault-0.3.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "79e5ab452fb709a76d57486ac3bee7a2", "sha256": "7f748c111e8e246aa3c50dc36a1245cd2c33885665795e09fd7a926e4fd4af85" }, "downloads": -1, "filename": "azure-keyvault-0.3.3.zip", "has_sig": false, "md5_digest": "79e5ab452fb709a76d57486ac3bee7a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78860, "upload_time": "2017-05-11T00:41:11", "url": "https://files.pythonhosted.org/packages/82/8b/9761cf4a00d9a9bdaf58507f21fce6ea5ea13236165afc0a0c19a74ac497/azure-keyvault-0.3.3.zip" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "da6d9fb63dc318b303e076bcca612caf", "sha256": "3308b7b44f483d15840e1c836c883b3171571cbae00bfdbe8ca1e8fe780d21b3" }, "downloads": -1, "filename": "azure_keyvault-0.3.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "da6d9fb63dc318b303e076bcca612caf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 96455, "upload_time": "2017-06-07T20:16:52", "url": "https://files.pythonhosted.org/packages/4f/98/1c5040c04c2083eb66929dff9576c5c8fb92537409d31d2ae9545d8ac3c0/azure_keyvault-0.3.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "72e64553c677204e4f2319d63641cd17", "sha256": "64d7e81508b5155f7a29ec84dc9cccf5c9878f07b800664a5ee72f858f819c6e" }, "downloads": -1, "filename": "azure-keyvault-0.3.4.zip", "has_sig": false, "md5_digest": "72e64553c677204e4f2319d63641cd17", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 106683, "upload_time": "2017-06-07T20:16:54", "url": "https://files.pythonhosted.org/packages/f8/12/7fa1ea0315eeab38363ec112d4ff74b85e2b9bd58ce98ff68528365e8831/azure-keyvault-0.3.4.zip" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "fe914f76985077276f28cd747972f7d8", "sha256": "ea5e80a874cd3d64f3a2c1b711a4cd777b35e71d104c8598f4a4c47bba702edd" }, "downloads": -1, "filename": "azure_keyvault-0.3.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fe914f76985077276f28cd747972f7d8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 159403, "upload_time": "2017-06-26T17:31:18", "url": "https://files.pythonhosted.org/packages/27/5c/6713290715c156f76b32310d9767526b8a7f0c0d5bbcda5074c6d1cec4f1/azure_keyvault-0.3.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b4f2f6551dd749065e1f4d1b5b361c64", "sha256": "c97deefd25f8977c65ab1eb8aa4c9de37de8a8c6a408e626e0e6f05ca89b2d8e" }, "downloads": -1, "filename": "azure-keyvault-0.3.5.zip", "has_sig": false, "md5_digest": "b4f2f6551dd749065e1f4d1b5b361c64", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 110769, "upload_time": "2017-06-26T17:31:20", "url": "https://files.pythonhosted.org/packages/3a/d6/05dc69de070a8fd40a6cae12d50b8dee32f4be977ab5bcdb15d73dc70fc3/azure-keyvault-0.3.5.zip" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "7e40f810bf8c4b5107995adeac57ac88", "sha256": "7a90ec71b9804db3630011be49814c75def881dc550f2beebf3e81978e77063c" }, "downloads": -1, "filename": "azure_keyvault-0.3.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7e40f810bf8c4b5107995adeac57ac88", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 100120, "upload_time": "2017-08-16T21:09:23", "url": "https://files.pythonhosted.org/packages/86/5b/912e4ce283a4b1a3467e3135422dfaf84f9809cd5bb29f007bb2ae240510/azure_keyvault-0.3.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d943f660e37960549b218949be4d4142", "sha256": "aa6665fdd8f8f7639bbbd31f68a3f8b639bba82eddc5b772253eb4a71667c829" }, "downloads": -1, "filename": "azure-keyvault-0.3.6.zip", "has_sig": false, "md5_digest": "d943f660e37960549b218949be4d4142", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 110567, "upload_time": "2017-08-16T21:09:25", "url": "https://files.pythonhosted.org/packages/3d/f1/cf99129a0bdd78f938d50d7205d613b85cebf71800a346ab574963059dea/azure-keyvault-0.3.6.zip" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "d06fb6d53b0c21768bd8e070cf77e9af", "sha256": "b37173a7ac45d1fd5e7a77599e09b38365731fefa18b80b75cd24e676389a7af" }, "downloads": -1, "filename": "azure_keyvault-0.3.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d06fb6d53b0c21768bd8e070cf77e9af", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 100347, "upload_time": "2017-09-22T20:08:38", "url": "https://files.pythonhosted.org/packages/7e/f7/1e186b391b6095037c6d45d23ac76b4e9cc4f6c23755a78ca56fc39fad00/azure_keyvault-0.3.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "557cdde865fbd622fc5ee2ecbb795221", "sha256": "549fafb04e1a3af1fdc94ccde05d59180d637ff6485784f716e7ddb30e6dd0ff" }, "downloads": -1, "filename": "azure-keyvault-0.3.7.zip", "has_sig": false, "md5_digest": "557cdde865fbd622fc5ee2ecbb795221", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 110837, "upload_time": "2017-09-22T20:08:40", "url": "https://files.pythonhosted.org/packages/10/92/24d4371d566f447e2b4ecebb9c360ca52e80f0a3381504974b0e37d865e7/azure-keyvault-0.3.7.zip" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "b50d61e27f08e6b9700b43f28d9f8b40", "sha256": "c9cfdb71dde47a72dedc03d5311678c5b9c51055dd41500aac39caa478337c17" }, "downloads": -1, "filename": "azure_keyvault-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b50d61e27f08e6b9700b43f28d9f8b40", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 194027, "upload_time": "2018-06-27T22:29:27", "url": "https://files.pythonhosted.org/packages/31/12/e7109920fe52135d63d58e61e3c5dabe8ae817704216f6ad939ede8799ac/azure_keyvault-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5feaea3f44b8a32a1573f75f035cc9d6", "sha256": "835f5233a383d3de742d981a36e3c5b8114e3a5c08a2a95c002016d0cd8f11bd" }, "downloads": -1, "filename": "azure-keyvault-1.0.0.zip", "has_sig": false, "md5_digest": "5feaea3f44b8a32a1573f75f035cc9d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 203792, "upload_time": "2018-06-27T22:29:31", "url": "https://files.pythonhosted.org/packages/ae/53/0f3d52b0b9de34086b0129ce76043a1e441ca269c19a3a17a33211d26a3c/azure-keyvault-1.0.0.zip" } ], "1.0.0a1": [ { "comment_text": "", "digests": { "md5": "2db57371ac3129e95b5d4e9864553654", "sha256": "54e1f5aca5202bdb8f48f07b68485ddb5adb44a62931b04a28132b64e2e872a6" }, "downloads": -1, "filename": "azure_keyvault-1.0.0a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2db57371ac3129e95b5d4e9864553654", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 109942, "upload_time": "2018-01-26T00:02:13", "url": "https://files.pythonhosted.org/packages/03/f3/fe18493d4ce781368f23d05701a8203344fdc15dbf9cfee4450652776d1a/azure_keyvault-1.0.0a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f637eb9c12f6ca0de36ba9b3bb6588e4", "sha256": "382cd04c3f47619241c91c651731054360fdf7b7d47d6cc36145943b34465655" }, "downloads": -1, "filename": "azure-keyvault-1.0.0a1.zip", "has_sig": false, "md5_digest": "f637eb9c12f6ca0de36ba9b3bb6588e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 121008, "upload_time": "2018-01-26T00:02:16", "url": "https://files.pythonhosted.org/packages/51/2c/a3bd30c64640511d02d0a10ddb0e8c990b1c4dc6697e8299ee38f1e37dc9/azure-keyvault-1.0.0a1.zip" } ], "1.0.0b1": [ { "comment_text": "", "digests": { "md5": "35c7b2ca66972407effb0ccf6db1bb17", "sha256": "735d6b59d40b717479b2922b0684cc9144623b87ebd71e03d043d1fb3b0952f2" }, "downloads": -1, "filename": "azure_keyvault-1.0.0b1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "35c7b2ca66972407effb0ccf6db1bb17", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 270522, "upload_time": "2018-04-14T00:11:40", "url": "https://files.pythonhosted.org/packages/e0/35/32e13048e4e504b37d3e70eae3a5d3481b6ca435526602527ed3e3d9de29/azure_keyvault-1.0.0b1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fd5a154411c29f6449d156d6f349a5c3", "sha256": "113c89016485d1423a2412bc6cfca61fcd207904f65643cee590f0e381c5d031" }, "downloads": -1, "filename": "azure-keyvault-1.0.0b1.zip", "has_sig": false, "md5_digest": "fd5a154411c29f6449d156d6f349a5c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 207031, "upload_time": "2018-04-14T00:12:11", "url": "https://files.pythonhosted.org/packages/61/2e/0ae8e58bc90bedbc195a2185e87cf55b4e13eb2ed817373d59a1d56cec30/azure-keyvault-1.0.0b1.zip" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "2a2a658449a585087b458b0808ebf4d5", "sha256": "dec5334cde846849dfe7896f2e98f17b4f4d75c316a4d30e7171ce71ca20713d" }, "downloads": -1, "filename": "azure_keyvault-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2a2a658449a585087b458b0808ebf4d5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 352270, "upload_time": "2018-08-07T21:14:40", "url": "https://files.pythonhosted.org/packages/80/37/e80f577570b32648c4b88c8c48a46501a4868ae4c8d905774fd02c2b01fc/azure_keyvault-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8c82053f0a5f8b3195a08e615da8789c", "sha256": "37a8e5f376eb5a304fcd066d414b5d93b987e68f9212b0c41efa37d429aadd49" }, "downloads": -1, "filename": "azure-keyvault-1.1.0.zip", "has_sig": false, "md5_digest": "8c82053f0a5f8b3195a08e615da8789c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 363909, "upload_time": "2018-08-07T21:14:42", "url": "https://files.pythonhosted.org/packages/8e/47/b71d7ab466189d0663a8aa216e4cc67eb16d5dfc7d69b62a9140dd8d1a20/azure-keyvault-1.1.0.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2a2a658449a585087b458b0808ebf4d5", "sha256": "dec5334cde846849dfe7896f2e98f17b4f4d75c316a4d30e7171ce71ca20713d" }, "downloads": -1, "filename": "azure_keyvault-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2a2a658449a585087b458b0808ebf4d5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 352270, "upload_time": "2018-08-07T21:14:40", "url": "https://files.pythonhosted.org/packages/80/37/e80f577570b32648c4b88c8c48a46501a4868ae4c8d905774fd02c2b01fc/azure_keyvault-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8c82053f0a5f8b3195a08e615da8789c", "sha256": "37a8e5f376eb5a304fcd066d414b5d93b987e68f9212b0c41efa37d429aadd49" }, "downloads": -1, "filename": "azure-keyvault-1.1.0.zip", "has_sig": false, "md5_digest": "8c82053f0a5f8b3195a08e615da8789c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 363909, "upload_time": "2018-08-07T21:14:42", "url": "https://files.pythonhosted.org/packages/8e/47/b71d7ab466189d0663a8aa216e4cc67eb16d5dfc7d69b62a9140dd8d1a20/azure-keyvault-1.1.0.zip" } ] }