{ "info": { "author": "Microsoft Corporation", "author_email": "ascl@microsoft.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "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.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "Microsoft Azure Storage SDK for Python\n======================================\n\n.. image:: https://travis-ci.org/Azure/azure-storage-python.svg\n :target: https://travis-ci.org/Azure/azure-storage-python\n.. image:: https://img.shields.io/codecov/c/github/azure/azure-storage-python.svg\n :target: https://codecov.io/gh/Azure/azure-storage-python\n\nThis project provides a client library in Python that makes it easy to\nconsume Microsoft Azure Storage services. For documentation please see\nthe Microsoft Azure `Python Developer Center`_ and our `API Reference`_ (also available on `readthedocs`_).\n\n If you are looking for the Service Bus or Azure Management\n libraries, please visit\n https://github.com/Azure/azure-sdk-for-python.\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 then install it again:\n\n.. code:: shell\n\n pip uninstall azure\n pip install azure\n\nIf you are upgrading from a version older than 0.30.0, see the upgrade doc, the \nusage samples in the samples directory, and the ChangeLog and BreakingChanges.\n\nIf you are encountering `problems`_ installing azure storage on Azure Web Apps,\n`upgrading pip`_ might help.\n\n**IMPORTANT**: If you have an earlier version of the azure-storage package\n(version <= 0.36.0), you should uninstall it before installing the new split packages.\n\nYou can check the version using pip:\n\n.. code:: shell\n\n pip freeze\n\nIf you see azure-storage==0.36.0 (or any version below 0.36.0), uninstall it first:\n\n.. code:: shell\n\n pip uninstall azure-storage\n\nFeatures\n========\n\n- Blob\n\n - Create/Read/Update/Delete Containers\n - Create/Read/Update/Delete Blobs\n - Advanced Blob Operations\n\n- Queue\n\n - Create/Delete Queues\n - Insert/Peek Queue Messages\n - Advanced Queue Operations\n\n- Files\n\n - Create/Update/Delete Shares\n - Create/Update/Delete Directories\n - Create/Read/Update/Delete Files\n - Advanced File Operations\n\nGetting Started\n===============\n\nDownload\n--------\n\nThe Azure Storage SDK for Python is composed of 5 packages:\n\n- azure-storage-blob\n\n - Contains the blob service APIs.\n\n- azure-storage-file\n\n - Contains the file service APIs.\n\n- azure-storage-queue\n\n - Contains the queue service APIs.\n\n- azure-storage-common\n\n - Contains common code shared by blob, file and queue.\n\n- azure-storage-nspkg\n\n - Owns the azure.storage namespace, user should not use this directly.\n\n**Note**: prior to and including version 0.36.0, there used to be a single package (azure-storage) containing all services.\nIt is no longer supported, and users should install the 3 before-mentioned service packages individually, depending on the need.\nIn addition, the **table** package is no longer releasing under the azure-storage namespace, please refer to `cosmosdb`_.\n\nOption 1: Via PyPi\n~~~~~~~~~~~~~~~~~~\n\nTo install via the Python Package Index (PyPI), type:\n::\n\n pip install azure-storage-blob\n pip install azure-storage-file\n pip install azure-storage-queue\n\nOption 2: Source Via Git\n~~~~~~~~~~~~~~~~~~~~~~~~\n\nTo get the source code of the SDK via git just type:\n\n::\n\n git clone git://github.com/Azure/azure-storage-python.git\n\n cd ./azure-storage-python/azure-storage-nspkg\n python setup.py install\n\n cd ../azure-storage-common\n python setup.py install\n\n cd ../azure-storage-blob\n python setup.py install\n\n\nReplace azure-storage-blob with azure-storage-file or azure-storage-queue, to install the other services.\n\nOption 3: Source Zip\n~~~~~~~~~~~~~~~~~~~~\n\nDownload a zip of the code via GitHub or PyPi. Then follow the same instructions in option 2.\n\nMinimum Requirements\n--------------------\n\n- Python 2.7, 3.3, 3.4, 3.5, or 3.6.\n- See setup.py for dependencies\n\nUsage\n-----\n\nTo use this SDK to call Microsoft Azure storage services, you need to\nfirst `create an account`_.\n\nLogging\n-----------\n\nTo make debugging easier, it is recommended to turn on logging for the logger named 'azure.storage'.\nHere are two example configurations:\n\n.. code:: python\n\n # Basic configuration: configure the root logger, including 'azure.storage'\n logging.basicConfig(format='%(asctime)s %(name)-20s %(levelname)-5s %(message)s', level=logging.INFO)\n\n.. code:: python\n\n # More advanced configuration allowing more control\n logger = logging.getLogger('azure.storage')\n handler = logging.StreamHandler()\n formatter = logging.Formatter('%(asctime)s %(name)-20s %(levelname)-5s %(message)s')\n handler.setFormatter(formatter)\n logger.addHandler(handler)\n logger.setLevel(logging.INFO)\n\nHere is how we use the logging levels, it is recommended to use INFO:\n\n- DEBUG: log strings to sign\n- INFO: log outgoing requests and responses, as well as retry attempts\n- WARNING: not used\n- ERROR: log calls that still failed after all the retries\n\nCode Sample\n-----------\n\nSee the samples directory for blob, queue, and file usage samples.\n\nNeed Help?\n==========\n\nBe sure to check out the Microsoft Azure `Developer Forums on MSDN`_ or\nthe `Developer Forums on Stack Overflow`_ if you have trouble with the\nprovided code.\n\nContribute Code or Provide Feedback\n===================================\n\nIf you would like to become an active contributor to this project, please\nfollow the instructions provided in `Azure Projects Contribution\nGuidelines`_. You can find more details for contributing in the `CONTRIBUTING.md doc`_.\n\nIf you encounter any bugs with the library, please file an issue in the\n`Issues`_ section of the project.\n\nLearn More\n==========\n\n- `Python Developer Center`_\n- `Azure Storage Service`_\n- `Azure Storage Team Blog`_\n- `API Reference`_\n\n.. _Python Developer Center: http://azure.microsoft.com/en-us/develop/python/\n.. _API Reference: https://docs.microsoft.com/en-us/python/api/overview/azure/storage/client?view=azure-python\n.. _readthedocs: https://azure-storage.readthedocs.io/\n.. _here: https://github.com/Azure/azure-storage-python/archive/master.zip\n.. _create an account: https://account.windowsazure.com/signup\n.. _Developer Forums on MSDN: http://social.msdn.microsoft.com/Forums/windowsazure/en-US/home?forum=windowsazuredata\n.. _Developer Forums on Stack Overflow: http://stackoverflow.com/questions/tagged/azure+windows-azure-storage\n.. _Azure Projects Contribution Guidelines: http://azure.github.io/guidelines.html\n.. _Issues: https://github.com/Azure/azure-storage-python/issues\n.. _Azure Storage Service: http://azure.microsoft.com/en-us/documentation/services/storage/\n.. _Azure Storage Team Blog: http://blogs.msdn.com/b/windowsazurestorage/\n.. _CONTRIBUTING.md doc: CONTRIBUTING.md\n.. _problems: https://github.com/Azure/azure-storage-python/issues/219\n.. _upgrading pip: https://docs.microsoft.com/en-us/visualstudio/python/managing-python-on-azure-app-service\n.. _cosmosdb: https://github.com/Azure/azure-cosmosdb-python\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-storage-python", "keywords": "", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "azure-storage-common", "package_url": "https://pypi.org/project/azure-storage-common/", "platform": "", "project_url": "https://pypi.org/project/azure-storage-common/", "project_urls": { "Homepage": "https://github.com/Azure/azure-storage-python" }, "release_url": "https://pypi.org/project/azure-storage-common/2.1.0/", "requires_dist": [ "azure-common (>=1.1.5)", "cryptography", "python-dateutil", "requests", "azure-storage-nspkg ; python_version<'3.0'" ], "requires_python": "", "summary": "Microsoft Azure Storage Common Client Library for Python", "version": "2.1.0" }, "last_serial": 5621859, "releases": { "0.37.0": [ { "comment_text": "", "digests": { "md5": "9923b243e4ce6fea1ae4e2b37ab87f70", "sha256": "82427f6dc901841d93a17b2bda4dde25fa21817ff9387317bad37845b0884489" }, "downloads": -1, "filename": "azure_storage_common-0.37.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9923b243e4ce6fea1ae4e2b37ab87f70", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 48778, "upload_time": "2017-10-05T00:54:34", "url": "https://files.pythonhosted.org/packages/d8/ec/804c03c757f564727a87de0ae4cdda357f8343fdffb64e568f0ec61059c9/azure_storage_common-0.37.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9d6669910e5ac411d6d5cae49f99f466", "sha256": "1a4bccc381f926c412ccfad54b396c61686933a606b90577aef8ec3a16283191" }, "downloads": -1, "filename": "azure-storage-common-0.37.0.tar.gz", "has_sig": false, "md5_digest": "9d6669910e5ac411d6d5cae49f99f466", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40525, "upload_time": "2017-10-05T00:54:20", "url": "https://files.pythonhosted.org/packages/c4/54/fdc01f09842eafb2ca43171542d3cd6d568cbda8c7551bee9e3a0d8b5602/azure-storage-common-0.37.0.tar.gz" } ], "0.37.1": [ { "comment_text": "", "digests": { "md5": "190076238009a948ada7b2f39927a953", "sha256": "98898c5e0b962299dd515b79390d860f30b2392c93dcedd8f76fa8a3415bf332" }, "downloads": -1, "filename": "azure_storage_common-0.37.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "190076238009a948ada7b2f39927a953", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 49199, "upload_time": "2017-11-03T20:59:56", "url": "https://files.pythonhosted.org/packages/40/0f/c6168ba0f633946a2d4e2cffd5310b1f53db52797d75291d545787400d68/azure_storage_common-0.37.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0b160fbc586ff535959f17cbbe60f039", "sha256": "29230a3f109aaff5024a0671c629c932eb51002e3f8bcad9a2454bde33c6765c" }, "downloads": -1, "filename": "azure-storage-common-0.37.1.tar.gz", "has_sig": false, "md5_digest": "0b160fbc586ff535959f17cbbe60f039", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40939, "upload_time": "2017-11-03T20:59:59", "url": "https://files.pythonhosted.org/packages/c2/f7/c1b87deee55944b412ab7ae28029e0594bd3f78970e3bfde93273277bde6/azure-storage-common-0.37.1.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "d97fa966af57af8e6436e86887f244d3", "sha256": "fdc69d4b5a18eb6f44c05dee1dea262caf4ee146653f4136d6e47e354cd5d390" }, "downloads": -1, "filename": "azure_storage_common-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d97fa966af57af8e6436e86887f244d3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 45781, "upload_time": "2018-01-23T03:07:17", "url": "https://files.pythonhosted.org/packages/8c/ce/178df062513a15d86fba4581a935c1d8ccca795265574cccf087e6f99b05/azure_storage_common-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b05a415a0b61c5bb5322861cce17c85e", "sha256": "d9187f319745c4f10e9d46569d2144b5b19c5a4782249df8018da619c6e8403e" }, "downloads": -1, "filename": "azure-storage-common-1.0.0.tar.gz", "has_sig": false, "md5_digest": "b05a415a0b61c5bb5322861cce17c85e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43289, "upload_time": "2018-01-23T03:07:23", "url": "https://files.pythonhosted.org/packages/66/c8/2b526c613e0b97ed78daf5070430ef42f9afd3ed40fdb2fd51fe099bc2f5/azure-storage-common-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "91f1579509d9bc86585fc6d63e94458c", "sha256": "2aad9fdaa6052867f19515a5d0acaa650103532cc50a8a8974b0d76e485525a0" }, "downloads": -1, "filename": "azure_storage_common-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "91f1579509d9bc86585fc6d63e94458c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 46183, "upload_time": "2018-02-06T06:58:41", "url": "https://files.pythonhosted.org/packages/3b/c6/31394ea86134bcfbff5dceb31d7ccde9e9150d7b7b6f4f1563acaaabcd24/azure_storage_common-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cee330d53c09102e2292517e644956ae", "sha256": "8c67a4b0ad9ef16c4da3ca050ac7ad2117818797365d7e3bb4f371bdb78040cf" }, "downloads": -1, "filename": "azure-storage-common-1.1.0.tar.gz", "has_sig": false, "md5_digest": "cee330d53c09102e2292517e644956ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43820, "upload_time": "2018-02-06T06:58:47", "url": "https://files.pythonhosted.org/packages/ba/c4/fcce69546f9d15eba3c139aa7314370391e96218b25db161b95f803c63f1/azure-storage-common-1.1.0.tar.gz" } ], "1.2.0rc1": [ { "comment_text": "", "digests": { "md5": "e90028ac1fc27bf5ff26e9dfb7e139af", "sha256": "2a640b50d24d12124e1ca2ccf4c3a5afb6024e7b31fdae74289402e05a27aedf" }, "downloads": -1, "filename": "azure_storage_common-1.2.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e90028ac1fc27bf5ff26e9dfb7e139af", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 48049, "upload_time": "2018-05-23T01:02:33", "url": "https://files.pythonhosted.org/packages/ea/a6/6475536fee3e49dac66a17d9c301944a28d5ed6b420384334e9cc90ecef6/azure_storage_common-1.2.0rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "903444f3aa7e031f09f05604dd0fa976", "sha256": "ae0d6045c7444b4cc3a76444475643f0e43a0cb67913509ba26207bd3886c3e3" }, "downloads": -1, "filename": "azure-storage-common-1.2.0rc1.tar.gz", "has_sig": false, "md5_digest": "903444f3aa7e031f09f05604dd0fa976", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39783, "upload_time": "2018-05-23T01:02:18", "url": "https://files.pythonhosted.org/packages/a6/8d/ca1133179aaa3de39ca193914e6fb3a92f328988bd0440642546d2b98685/azure-storage-common-1.2.0rc1.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "e07b9a01737f20af4ea1a33b71fe77b9", "sha256": "a412a78618e82bf99030ce56f1f2d5fc6c2c2eec7ee1beda86ce6ea5f2c9196b" }, "downloads": -1, "filename": "azure_storage_common-1.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e07b9a01737f20af4ea1a33b71fe77b9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 48701, "upload_time": "2018-06-27T00:56:06", "url": "https://files.pythonhosted.org/packages/7b/18/03872177864b7ce4aa0302eae5726e8cb66dbb4f30a3408ed27a6639407f/azure_storage_common-1.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "79c78ff37796d4481e83765d64c66c21", "sha256": "585658ebc784e843a285732a69aa69ef922e17c3063460c2c7b27c89f377004c" }, "downloads": -1, "filename": "azure-storage-common-1.3.0.tar.gz", "has_sig": false, "md5_digest": "79c78ff37796d4481e83765d64c66c21", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40482, "upload_time": "2018-06-27T00:56:36", "url": "https://files.pythonhosted.org/packages/42/7e/fa7e93011cf319ea5c47ae75024b649b84f011bb06c3cdff5c605ba85730/azure-storage-common-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "0cc83de6d8e672eb40b2d5ee66b520c8", "sha256": "69bba6aad1e8a717eeee0f95c2feeeed72ef802001e66d6d15bf8446c4f53e6a" }, "downloads": -1, "filename": "azure_storage_common-1.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0cc83de6d8e672eb40b2d5ee66b520c8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 46568, "upload_time": "2018-11-10T02:23:14", "url": "https://files.pythonhosted.org/packages/73/84/025ac436a6a1d5516d1a67887d7122b3b2ea04ba6b2d2c46fe949accb62b/azure_storage_common-1.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "004156efa27346834e7632463f266ba4", "sha256": "7ab607f9b8fd27b817482194b1e7d43484c65dcf2605aae21ad8706c6891934d" }, "downloads": -1, "filename": "azure-storage-common-1.4.0.tar.gz", "has_sig": false, "md5_digest": "004156efa27346834e7632463f266ba4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41629, "upload_time": "2018-11-10T02:23:01", "url": "https://files.pythonhosted.org/packages/6b/d5/b0bac239f0b6396ce6f56a04ed5e3a8e4a0fe59669459f4cf4fe9df4f259/azure-storage-common-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "1505e8607e82582359d5991eadf040c4", "sha256": "51262eeaa7d24ae11e6bcd4b76368248c617584d76c414048ef68c241a235b04" }, "downloads": -1, "filename": "azure_storage_common-1.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1505e8607e82582359d5991eadf040c4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 47277, "upload_time": "2019-05-09T02:32:52", "url": "https://files.pythonhosted.org/packages/fa/d9/eeaa581ed43f9314ec30fb1bceb81403956b462a66fb7bd7c6ce909e6281/azure_storage_common-1.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "48f6066d7483704258bc608fb5040417", "sha256": "d80faa1de4e708e0ea6bbff8714724fce2cd64d595140704ff7568ed6b01ab7c" }, "downloads": -1, "filename": "azure-storage-common-1.4.1.tar.gz", "has_sig": false, "md5_digest": "48f6066d7483704258bc608fb5040417", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41360, "upload_time": "2019-05-09T02:32:40", "url": "https://files.pythonhosted.org/packages/c0/02/566b8c8c97ce06707c1e2b12fa7ac2fe46d6e1fc8d179749394080792f65/azure-storage-common-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "e3ac25f9f93d8be78a28e1b6f63a6769", "sha256": "de4817cce35a23d1c89563edc38b481ebd8da4655bdf32d26fa2b06095179e4a" }, "downloads": -1, "filename": "azure_storage_common-1.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e3ac25f9f93d8be78a28e1b6f63a6769", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 47419, "upload_time": "2019-05-09T20:05:01", "url": "https://files.pythonhosted.org/packages/05/6c/b2285bf3687768dbf61b6bc085b0c1be2893b6e2757a9d023263764177f3/azure_storage_common-1.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8c48c5dd471c63536eb0e443c20c0a27", "sha256": "4ec87c7537d457ec95252e0e46477e2c1ccf33774ffefd05d8544682cb0ae401" }, "downloads": -1, "filename": "azure-storage-common-1.4.2.tar.gz", "has_sig": false, "md5_digest": "8c48c5dd471c63536eb0e443c20c0a27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41507, "upload_time": "2019-05-09T20:05:03", "url": "https://files.pythonhosted.org/packages/ae/45/0d21c1543afd3a97c416298368e06df158dfb4740da0e646a99dab6080de/azure-storage-common-1.4.2.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "407c0d16830b610fa32363e334c52b3e", "sha256": "1fce4505880c345c83c06b2ae449e403be46dca039b9ef16d122fb1e4b2741f5" }, "downloads": -1, "filename": "azure_storage_common-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "407c0d16830b610fa32363e334c52b3e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 47278, "upload_time": "2019-05-09T19:56:26", "url": "https://files.pythonhosted.org/packages/b7/07/8363f1d247597bb9b0631db2207681ecbc23fafe228b668b9c27bed35dfc/azure_storage_common-2.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "71f70b9935a6ad54fc2d0683a6320dba", "sha256": "4390cd5f6fb50fbff37ba154258ea010291a84f128917141e1d7060597bd4708" }, "downloads": -1, "filename": "azure-storage-common-2.0.0.tar.gz", "has_sig": false, "md5_digest": "71f70b9935a6ad54fc2d0683a6320dba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41352, "upload_time": "2019-05-09T19:56:17", "url": "https://files.pythonhosted.org/packages/5e/e3/f911b664fbf6b1607f9ddc4998ce1d2f260b542983a2e6e0d219429b8605/azure-storage-common-2.0.0.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "2a1bc3a3c9d804497df3e46f5e6fb07f", "sha256": "b01a491a18839b9d05a4fe3421458a0ddb5ab9443c14e487f40d16f9a1dc2fbe" }, "downloads": -1, "filename": "azure_storage_common-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2a1bc3a3c9d804497df3e46f5e6fb07f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 47778, "upload_time": "2019-08-02T04:24:14", "url": "https://files.pythonhosted.org/packages/6b/a0/6794b318ce0118d1a4053bdf0149a60807407db9b710354f2b203c2f5975/azure_storage_common-2.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8b78fae1786098193ce21ddea0bf0157", "sha256": "ccedef5c67227bc4d6670ffd37cec18fb529a1b7c3a5e53e4096eb0cf23dc73f" }, "downloads": -1, "filename": "azure-storage-common-2.1.0.tar.gz", "has_sig": false, "md5_digest": "8b78fae1786098193ce21ddea0bf0157", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41869, "upload_time": "2019-08-02T04:24:21", "url": "https://files.pythonhosted.org/packages/48/12/e074fe454bc327fbe2a61e20d3260473ee4a0fd85387baf249dc83c8e774/azure-storage-common-2.1.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2a1bc3a3c9d804497df3e46f5e6fb07f", "sha256": "b01a491a18839b9d05a4fe3421458a0ddb5ab9443c14e487f40d16f9a1dc2fbe" }, "downloads": -1, "filename": "azure_storage_common-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2a1bc3a3c9d804497df3e46f5e6fb07f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 47778, "upload_time": "2019-08-02T04:24:14", "url": "https://files.pythonhosted.org/packages/6b/a0/6794b318ce0118d1a4053bdf0149a60807407db9b710354f2b203c2f5975/azure_storage_common-2.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8b78fae1786098193ce21ddea0bf0157", "sha256": "ccedef5c67227bc4d6670ffd37cec18fb529a1b7c3a5e53e4096eb0cf23dc73f" }, "downloads": -1, "filename": "azure-storage-common-2.1.0.tar.gz", "has_sig": false, "md5_digest": "8b78fae1786098193ce21ddea0bf0157", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41869, "upload_time": "2019-08-02T04:24:21", "url": "https://files.pythonhosted.org/packages/48/12/e074fe454bc327fbe2a61e20d3260473ee4a0fd85387baf249dc83c8e774/azure-storage-common-2.1.0.tar.gz" } ] }