{ "info": { "author": "Microsoft Corporation", "author_email": "azpysdkhelp@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.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8" ], "description": "# Microsoft Azure SDK for Python\n\nThis is the Microsoft Azure Advisor Client Library.\nThis package has been tested with Python 2.7, 3.5, 3.6, 3.7 and 3.8.\nFor a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).\n\n\n# Usage\n\n\nTo learn how to use this package, see the [quickstart guide](https://aka.ms/azsdk/python/mgmt)\n\n\n\nFor docs and references, see [Python SDK References](https://docs.microsoft.com/python/api/overview/azure/)\nCode samples for this package can be found at [Advisor Management](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing&terms=Getting%20started%20-%20Managing) on docs.microsoft.com.\nAdditional code samples for different Azure services are available at [Samples Repo](https://aka.ms/azsdk/python/mgmt/samples)\n\n\n# Provide Feedback\n\nIf you encounter any bugs or have suggestions, please file an issue in the\n[Issues](https://github.com/Azure/azure-sdk-for-python/issues)\nsection of the project.\n\n\n![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-mgmt-advisor%2FREADME.png)\n\n\n# Release History\n\n## 9.0.0 (2020-12-22)\n\n**Features**\n\n - Model SuppressionContract has a new parameter expiration_time_stamp\n\n## 9.0.0b1 (2020-11-03)\n\nThis is beta preview version.\n\nThis version uses a next-generation code generator that introduces important breaking changes, but also important new features (like unified authentication and async programming).\n\n**General breaking changes**\n\n- Credential system has been completly revamped:\n\n - `azure.common.credentials` or `msrestazure.azure_active_directory` instances are no longer supported, use the `azure-identity` classes instead: https://pypi.org/project/azure-identity/\n - `credentials` parameter has been renamed `credential`\n\n- The `config` attribute no longer exists on a client, configuration should be passed as kwarg. Example: `MyClient(credential, subscription_id, enable_logging=True)`. For a complete set of\n supported options, see the [parameters accept in init documentation of azure-core](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/core/azure-core/CLIENT_LIBRARY_DEVELOPER.md#available-policies)\n- You can't import a `version` module anymore, use `__version__` instead\n- Operations that used to return a `msrest.polling.LROPoller` now returns a `azure.core.polling.LROPoller` and are prefixed with `begin_`.\n- Exceptions tree have been simplified and most exceptions are now `azure.core.exceptions.HttpResponseError` (`CloudError` has been removed).\n- Most of the operation kwarg have changed. Some of the most noticeable:\n\n - `raw` has been removed. Equivalent feature can be found using `cls`, a callback that will give access to internal HTTP response for advanced user\n - For a complete set of\n supported options, see the [parameters accept in Request documentation of azure-core](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/core/azure-core/CLIENT_LIBRARY_DEVELOPER.md#available-policies)\n\n**General new features**\n\n- Type annotations support using `typing`. SDKs are mypy ready.\n- This client has now stable and official support for async. Check the `aio` namespace of your package to find the async client.\n- This client now support natively tracing library like OpenCensus or OpenTelemetry. See this [tracing quickstart](https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/core/azure-core-tracing-opentelemetry) for an overview.\n\n## 4.0.0 (2020-03-14)\n\n**Features**\n\n- Model ResourceRecommendationBase has a new parameter resource_metadata\n\n**Breaking changes**\n\n- Model ConfigData has a new signature\n\n## 3.0.0 (2019-10-24)\n\n**Features**\n\n - Added operation group RecommendationMetadataOperations\n\n**General Breaking Changes**\n\nThis version uses a next-generation code generator that might introduce\nbreaking changes if from some import. In summary, some modules were\nincorrectly visible/importable and have been renamed. This fixed several\nissues caused by usage of classes that were not supposed to be used in\nthe first place. AdvisorManagementClient cannot be imported from\nazure.mgmt.advisor.advisor_management_client anymore (import from\nazure.mgmt.advisor works like before)\nAdvisorManagementClientConfiguration import has been moved from\nazure.mgmt.advisor.advisor_management_client to azure.mgmt.advisor A\nmodel MyClass from a \"models\" sub-module cannot be imported anymore\nusing azure.mgmt.advisor.models.my_class (import from\nazure.mgmt.advisor.models works like before) An operation class\nMyClassOperations from an operations sub-module cannot be imported\nanymore using azure.mgmt.advisor.operations.my_class_operations\n(import from azure.mgmt.advisor.operations works like before) Last but\nnot least, HTTP connection pooling is now enabled by default. You should\nalways use a client as a context manager, or call close(), or use no\nmore than one client per process.\n\n## 2.0.1 (2018-10-16)\n\n**Bugfix**\n\n - Fix sdist broken in 2.0.0. No code change.\n\n## 2.0.0 (2018-10-15)\n\n**Features**\n\n - Model ResourceRecommendationBase has a new parameter\n extended_properties\n - Client class can be used as a context manager to keep the underlying\n HTTP session open for performance\n\n**General Breaking changes**\n\nThis version uses a next-generation code generator that *might*\nintroduce breaking changes.\n\n - Model signatures now use only keyword-argument syntax. All\n positional arguments must be re-written as keyword-arguments. To\n keep auto-completion in most cases, models are now generated for\n Python 2 and Python 3. Python 3 uses the \"*\" syntax for\n keyword-only arguments.\n - Enum types now use the \"str\" mixin (class AzureEnum(str, Enum)) to\n improve the behavior when unrecognized enum values are encountered.\n While this is not a breaking change, the distinctions are important,\n and are documented here:\n At a glance:\n - \"is\" should not be used at all.\n - \"format\" will return the string value, where \"%s\" string\n formatting will return `NameOfEnum.stringvalue`. Format syntax\n should be prefered.\n - New Long Running Operation:\n - Return type changes from\n `msrestazure.azure_operation.AzureOperationPoller` to\n `msrest.polling.LROPoller`. External API is the same.\n - Return type is now **always** a `msrest.polling.LROPoller`,\n regardless of the optional parameters used.\n - The behavior has changed when using `raw=True`. Instead of\n returning the initial call result as `ClientRawResponse`,\n without polling, now this returns an LROPoller. After polling,\n the final resource will be returned as a `ClientRawResponse`.\n - New `polling` parameter. The default behavior is\n `Polling=True` which will poll using ARM algorithm. When\n `Polling=False`, the response of the initial call will be\n returned without polling.\n - `polling` parameter accepts instances of subclasses of\n `msrest.polling.PollingMethod`.\n - `add_done_callback` will no longer raise if called after\n polling is finished, but will instead execute the callback right\n away.\n\n**Note**\n\n - azure-mgmt-nspkg is not installed anymore on Python 3 (PEP420-based\n namespace package)\n\n## 1.0.1 (2018-02-13)\n\n - Fix list_by_subscription return type\n - Fix list_by_resource_group return type\n\n## 1.0.0 (2018-01-16)\n\n - GA Release\n\n## 0.1.0 (2017-11-06)\n\n - Initial Release\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Azure/azure-sdk-for-python", "keywords": "", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "azure-mgmt-advisor", "package_url": "https://pypi.org/project/azure-mgmt-advisor/", "platform": "", "project_url": "https://pypi.org/project/azure-mgmt-advisor/", "project_urls": { "Homepage": "https://github.com/Azure/azure-sdk-for-python" }, "release_url": "https://pypi.org/project/azure-mgmt-advisor/9.0.0/", "requires_dist": [ "msrest (>=0.5.0)", "azure-common (~=1.1)", "azure-mgmt-core (<2.0.0,>=1.2.0)", "azure-mgmt-nspkg ; python_version<'3.0'" ], "requires_python": "", "summary": "Microsoft Azure Advisor Client Library for Python", "version": "9.0.0", "yanked": false, "yanked_reason": null }, "last_serial": 9046194, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "92f1c1dd1b10209590c2b6965cabdc72", "sha256": "5eb357172313a515eea43d256f1f88c5a8c0b60d5c49f9e2b117858f0d804fe4" }, "downloads": -1, "filename": "azure_mgmt_advisor-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "92f1c1dd1b10209590c2b6965cabdc72", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 26694, "upload_time": "2017-11-06T23:07:59", "upload_time_iso_8601": "2017-11-06T23:07:59.684923Z", "url": "https://files.pythonhosted.org/packages/78/d0/26d109521a4dcc70dce5eccfb4cd80e9e127dc16ddd2234a99a5e33f933e/azure_mgmt_advisor-0.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "25ca2e199cc63f99a184777534188a13", "sha256": "c72932946258f080830fafb77a3bef6e6637e249c7249c178da7be8041cdc287" }, "downloads": -1, "filename": "azure-mgmt-advisor-0.1.0.zip", "has_sig": false, "md5_digest": "25ca2e199cc63f99a184777534188a13", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36505, "upload_time": "2017-11-06T23:08:01", "upload_time_iso_8601": "2017-11-06T23:08:01.002622Z", "url": "https://files.pythonhosted.org/packages/48/a8/5efd0bbeaa5cd64535f0e2dff8d6823d47e0ea1b421808351e06ceb25ca6/azure-mgmt-advisor-0.1.0.zip", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "2bedc5093ed74687d51fb21bb6cdc2d5", "sha256": "6d771ccfbd5ff9bcaf7b46f5dfdaa682406ec744ee8cdc6c18d317132386a80a" }, "downloads": -1, "filename": "azure_mgmt_advisor-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2bedc5093ed74687d51fb21bb6cdc2d5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 26848, "upload_time": "2018-01-17T19:50:27", "upload_time_iso_8601": "2018-01-17T19:50:27.701183Z", "url": "https://files.pythonhosted.org/packages/d9/60/3badf4480dec08b6024e5951c01fc610c3cee2e4ca70f3a569dfb2ad2707/azure_mgmt_advisor-1.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab8d7dabd4e71cb18d8aaea72f9a7dfa", "sha256": "6f84b6335cf4756c4e9cdbda2c8e1d8eda88bd223cec6e601dc79e22b3983cc2" }, "downloads": -1, "filename": "azure-mgmt-advisor-1.0.0.zip", "has_sig": false, "md5_digest": "ab8d7dabd4e71cb18d8aaea72f9a7dfa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36658, "upload_time": "2018-01-17T19:50:29", "upload_time_iso_8601": "2018-01-17T19:50:29.345299Z", "url": "https://files.pythonhosted.org/packages/be/4b/b16222df65c779fc3e4197e43395e5e1446548bcbab508ae2cd0ba0aa695/azure-mgmt-advisor-1.0.0.zip", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "e8d07f43278de5e255312ca7fba33484", "sha256": "9d166cc9868971d03ec852e900fa1f1b95d8829233eff2b1baf702bd34b9887b" }, "downloads": -1, "filename": "azure_mgmt_advisor-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e8d07f43278de5e255312ca7fba33484", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 27079, "upload_time": "2018-02-13T19:47:45", "upload_time_iso_8601": "2018-02-13T19:47:45.582314Z", "url": "https://files.pythonhosted.org/packages/cb/f3/a86ba3e0784d12c8fe5cbf1f24e1b9255575a2f0892e08c46cddd0795dfd/azure_mgmt_advisor-1.0.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19967727329c03de88011b46718fed35", "sha256": "8fdcb41f760a216e6b835eaec11dba61822777b386139d83eee31f0ff63b05da" }, "downloads": -1, "filename": "azure-mgmt-advisor-1.0.1.zip", "has_sig": false, "md5_digest": "19967727329c03de88011b46718fed35", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36940, "upload_time": "2018-02-13T19:47:47", "upload_time_iso_8601": "2018-02-13T19:47:47.583180Z", "url": "https://files.pythonhosted.org/packages/f0/67/5de0f7f8f71f2adbed66f981fcd77c0db5ed8801be87dc00799f3296f686/azure-mgmt-advisor-1.0.1.zip", "yanked": false, "yanked_reason": null } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "bc44f0fe1c96448a0863fbd6d32fb993", "sha256": "a3c777921ac239fd999fc03a0476d5588662a8251edd19b01144d743c4fb1350" }, "downloads": -1, "filename": "azure_mgmt_advisor-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bc44f0fe1c96448a0863fbd6d32fb993", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 34238, "upload_time": "2018-10-15T18:28:15", "upload_time_iso_8601": "2018-10-15T18:28:15.610504Z", "url": "https://files.pythonhosted.org/packages/56/58/adf9e2045dbe0c12fe715a1fa45f083f55cfd821285e1bd001ae2cf8190b/azure_mgmt_advisor-2.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f7e14b35f372f87a16904ceb7a7e0ae", "sha256": "18ceafd313bb82e86c68e3820b07cc1255b72f5c0e937ecd61d12d587e5e4329" }, "downloads": -1, "filename": "azure-mgmt-advisor-2.0.0.zip", "has_sig": false, "md5_digest": "1f7e14b35f372f87a16904ceb7a7e0ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41006, "upload_time": "2018-10-15T18:28:17", "upload_time_iso_8601": "2018-10-15T18:28:17.288453Z", "url": "https://files.pythonhosted.org/packages/98/eb/b92380a5ab11e54f54a7881deddbb613c3eec5a4f5e963e843e96c3c0a5d/azure-mgmt-advisor-2.0.0.zip", "yanked": false, "yanked_reason": null } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "dca994ebe9f4b3e7f1244d95f91e1c3c", "sha256": "9e424188d71cd35478bff4591eeee2ceb0b097da87f349bc5de5b39799be26de" }, "downloads": -1, "filename": "azure_mgmt_advisor-2.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dca994ebe9f4b3e7f1244d95f91e1c3c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 34270, "upload_time": "2018-10-16T18:39:32", "upload_time_iso_8601": "2018-10-16T18:39:32.863020Z", "url": "https://files.pythonhosted.org/packages/12/52/5b8ff97a7056fd1d4458677e7628b81bb9c22013ec9a761e39d0e9d55498/azure_mgmt_advisor-2.0.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7d9862e3b5403fa5e6e2e992641e6bee", "sha256": "1929d6d5ba49d055fdc806e981b93cf75ea42ba35f78222aaf42d8dcf29d4ef3" }, "downloads": -1, "filename": "azure-mgmt-advisor-2.0.1.zip", "has_sig": false, "md5_digest": "7d9862e3b5403fa5e6e2e992641e6bee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41572, "upload_time": "2018-10-16T18:39:35", "upload_time_iso_8601": "2018-10-16T18:39:35.623196Z", "url": "https://files.pythonhosted.org/packages/f2/fb/bca29d83a2062c7d977742189195d669fd5983017fddb464c90f07adaac0/azure-mgmt-advisor-2.0.1.zip", "yanked": false, "yanked_reason": null } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "877dcdc70eb43c2aedcab2ce8d3c27f5", "sha256": "d3405b7736b7d5e6e1a0ccc70c0d554a27054507d24430616fd3bbd3a16f4883" }, "downloads": -1, "filename": "azure_mgmt_advisor-3.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "877dcdc70eb43c2aedcab2ce8d3c27f5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 26222, "upload_time": "2019-10-24T04:10:56", "upload_time_iso_8601": "2019-10-24T04:10:56.962921Z", "url": "https://files.pythonhosted.org/packages/47/f5/99af29fea19a8730e7af546f5f3cd88140a0faa92d436a8ff33d6adee104/azure_mgmt_advisor-3.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb4b2b5365431f6a760b9c55e71802f9", "sha256": "c52a4cf91d736c0ecdcb4d555e3b7713ff892343f610e7d65c63549edb98c221" }, "downloads": -1, "filename": "azure-mgmt-advisor-3.0.0.zip", "has_sig": false, "md5_digest": "bb4b2b5365431f6a760b9c55e71802f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42782, "upload_time": "2019-10-24T04:10:58", "upload_time_iso_8601": "2019-10-24T04:10:58.398933Z", "url": "https://files.pythonhosted.org/packages/6c/58/d5cb55d013567d4df58dcfa1ca76b3c33dad9c5d7f9928adf3b37aee107a/azure-mgmt-advisor-3.0.0.zip", "yanked": false, "yanked_reason": null } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "50ab357a804fe319511479da9e742d40", "sha256": "ad923ed8d187b67bd7320107a660f4a9bba9c24ad141dc118e434e848cba39cc" }, "downloads": -1, "filename": "azure_mgmt_advisor-4.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "50ab357a804fe319511479da9e742d40", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 27758, "upload_time": "2020-03-25T00:52:19", "upload_time_iso_8601": "2020-03-25T00:52:19.403748Z", "url": "https://files.pythonhosted.org/packages/8d/96/ce9c9dd989e5b338a9979cc0a62661c36579e6830dbcf08ca0192a698001/azure_mgmt_advisor-4.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1bb95b9216160ac6b419a8740e32a01", "sha256": "1ecea7a9dc48c099c06aab68aace7fdbded91a5522932882b1707c29fa055054" }, "downloads": -1, "filename": "azure-mgmt-advisor-4.0.0.zip", "has_sig": false, "md5_digest": "f1bb95b9216160ac6b419a8740e32a01", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60668, "upload_time": "2020-03-25T00:52:21", "upload_time_iso_8601": "2020-03-25T00:52:21.187393Z", "url": "https://files.pythonhosted.org/packages/45/da/227b284ca332148ca3a4d303992ae455a8d2602b8459bc19586ae337696e/azure-mgmt-advisor-4.0.0.zip", "yanked": false, "yanked_reason": null } ], "9.0.0": [ { "comment_text": "", "digests": { "md5": "ac29e6695443739778b1edb568a380ab", "sha256": "d4281663fb0ecb7e1cd2a4bf3dd84a7d349f55377537cf77ef001c8c387a98f5" }, "downloads": -1, "filename": "azure_mgmt_advisor-9.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ac29e6695443739778b1edb568a380ab", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 46947, "upload_time": "2021-01-04T06:14:51", "upload_time_iso_8601": "2021-01-04T06:14:51.784652Z", "url": "https://files.pythonhosted.org/packages/ea/34/776fc2d130dab6259471b7d206a95246cc373ebb490f198fe970f1ab5ef7/azure_mgmt_advisor-9.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "79491aacbc9a733462f0d4f8291bd6b2", "sha256": "fc408b37315fe84781b519124f8cb1b8ac10b2f4241e439d0d3e25fd6ca18d7b" }, "downloads": -1, "filename": "azure-mgmt-advisor-9.0.0.zip", "has_sig": false, "md5_digest": "79491aacbc9a733462f0d4f8291bd6b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62679, "upload_time": "2021-01-04T06:14:53", "upload_time_iso_8601": "2021-01-04T06:14:53.477549Z", "url": "https://files.pythonhosted.org/packages/34/96/e28b949dd55e1fc381fae2676c95c8a9410fa4b9768cc02ec3668fc490c4/azure-mgmt-advisor-9.0.0.zip", "yanked": false, "yanked_reason": null } ], "9.0.0b1": [ { "comment_text": "", "digests": { "md5": "6c08bc1db2bde3cfefff877518e6a3e6", "sha256": "c5220308957c19b19094612f763a3b9534c35697af090fdb8cd403a63633cd79" }, "downloads": -1, "filename": "azure_mgmt_advisor-9.0.0b1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6c08bc1db2bde3cfefff877518e6a3e6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 46669, "upload_time": "2020-11-18T06:15:26", "upload_time_iso_8601": "2020-11-18T06:15:26.934976Z", "url": "https://files.pythonhosted.org/packages/e0/b0/bc354d8d7bb5e4899113b3eaef624d991c4ef97fa9009d31e3be15a0c272/azure_mgmt_advisor-9.0.0b1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "abfce1362699ef53a12eb614c9d4dfd8", "sha256": "740086b9bc270f7f210ef3f298c81ce1f3e0676f62fb52c93bc93ced761bf224" }, "downloads": -1, "filename": "azure-mgmt-advisor-9.0.0b1.zip", "has_sig": false, "md5_digest": "abfce1362699ef53a12eb614c9d4dfd8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65245, "upload_time": "2020-11-18T06:15:28", "upload_time_iso_8601": "2020-11-18T06:15:28.422173Z", "url": "https://files.pythonhosted.org/packages/f5/b2/e1eecac3a47560f0645c1e3ddb571aef20acca92e64e6c431324ac6df8c7/azure-mgmt-advisor-9.0.0b1.zip", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ac29e6695443739778b1edb568a380ab", "sha256": "d4281663fb0ecb7e1cd2a4bf3dd84a7d349f55377537cf77ef001c8c387a98f5" }, "downloads": -1, "filename": "azure_mgmt_advisor-9.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ac29e6695443739778b1edb568a380ab", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 46947, "upload_time": "2021-01-04T06:14:51", "upload_time_iso_8601": "2021-01-04T06:14:51.784652Z", "url": "https://files.pythonhosted.org/packages/ea/34/776fc2d130dab6259471b7d206a95246cc373ebb490f198fe970f1ab5ef7/azure_mgmt_advisor-9.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "79491aacbc9a733462f0d4f8291bd6b2", "sha256": "fc408b37315fe84781b519124f8cb1b8ac10b2f4241e439d0d3e25fd6ca18d7b" }, "downloads": -1, "filename": "azure-mgmt-advisor-9.0.0.zip", "has_sig": false, "md5_digest": "79491aacbc9a733462f0d4f8291bd6b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62679, "upload_time": "2021-01-04T06:14:53", "upload_time_iso_8601": "2021-01-04T06:14:53.477549Z", "url": "https://files.pythonhosted.org/packages/34/96/e28b949dd55e1fc381fae2676c95c8a9410fa4b9768cc02ec3668fc490c4/azure-mgmt-advisor-9.0.0.zip", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }