{ "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-blob", "package_url": "https://pypi.org/project/azure-storage-blob/", "platform": "", "project_url": "https://pypi.org/project/azure-storage-blob/", "project_urls": { "Homepage": "https://github.com/Azure/azure-storage-python" }, "release_url": "https://pypi.org/project/azure-storage-blob/2.1.0/", "requires_dist": [ "azure-common (>=1.1.5)", "azure-storage-common (~=2.1)", "futures ; python_version<'3.0'" ], "requires_python": "", "summary": "Microsoft Azure Storage Blob Client Library for Python", "version": "2.1.0" }, "last_serial": 5947165, "releases": { "0.37.0": [ { "comment_text": "", "digests": { "md5": "2aa4b0928e2c3c4439e99c35106cf610", "sha256": "674e029d8ba121edc844ec82102ca33884ca0994c0623d436c3509c2812a4ae9" }, "downloads": -1, "filename": "azure_storage_blob-0.37.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2aa4b0928e2c3c4439e99c35106cf610", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 76641, "upload_time": "2017-10-05T00:54:32", "url": "https://files.pythonhosted.org/packages/db/9a/9febe67803f1d10ba2a751184bde5ccf6780e3e15858c899f944ef2a22e3/azure_storage_blob-0.37.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "18f58d35836f31375ad9bb4e44bfde0b", "sha256": "57809127d16117719825d70267a7bab9f07a7b33fb53702b55ea3b7c26fc0134" }, "downloads": -1, "filename": "azure-storage-blob-0.37.0.tar.gz", "has_sig": false, "md5_digest": "18f58d35836f31375ad9bb4e44bfde0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69010, "upload_time": "2017-10-05T00:54:18", "url": "https://files.pythonhosted.org/packages/da/c8/cc5bad0f9466653719c29defda40cc9c11313b1aff8a6581816a4e09af9e/azure-storage-blob-0.37.0.tar.gz" } ], "0.37.1": [ { "comment_text": "", "digests": { "md5": "f31ffde5c5f5b7518113c013f8f6e2a3", "sha256": "cf46cc979072886404f726f218454f1e6fe51613c1c0d8f79a73f7b7bbb474d1" }, "downloads": -1, "filename": "azure_storage_blob-0.37.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f31ffde5c5f5b7518113c013f8f6e2a3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 77562, "upload_time": "2017-11-03T20:59:54", "url": "https://files.pythonhosted.org/packages/13/0f/29d641916e7c402fe95999bb3945c9c6088c07f15ff7485ebbe35109b5a8/azure_storage_blob-0.37.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d268d6991c817a55a1685bb07b473f26", "sha256": "54a50f3c6f46b01861f8b290b6689bd068edd3ab36bbc4169fa67c301099f601" }, "downloads": -1, "filename": "azure-storage-blob-0.37.1.tar.gz", "has_sig": false, "md5_digest": "d268d6991c817a55a1685bb07b473f26", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69898, "upload_time": "2017-11-03T20:59:57", "url": "https://files.pythonhosted.org/packages/7f/b7/7b532888da69d9c4bc22b491993b5d74fb8bb7f752f95e2a4bae8b80a876/azure-storage-blob-0.37.1.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "72cbb15536a08f4e14ef4bd5b0aedb02", "sha256": "ca91f0467787f572d9ebe41356f912d4bf2c983034c8ae65503ae067d745184c" }, "downloads": -1, "filename": "azure_storage_blob-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "72cbb15536a08f4e14ef4bd5b0aedb02", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 74225, "upload_time": "2018-01-23T03:07:15", "url": "https://files.pythonhosted.org/packages/dd/1d/fdc0987c8963d84dd4c5ad01ee68365a265b24750cb7d994629b4100b202/azure_storage_blob-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b638529867f51533606b35cff1d755e3", "sha256": "c0d5bb685e5f099a605448922e7e78df346ce53826fac896ba462a95b1873e2b" }, "downloads": -1, "filename": "azure-storage-blob-1.0.0.tar.gz", "has_sig": false, "md5_digest": "b638529867f51533606b35cff1d755e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71265, "upload_time": "2018-01-23T03:07:21", "url": "https://files.pythonhosted.org/packages/f2/d1/9a0a955b80d22791124c1d1899306b073969b0dc1857e298a39f869d038a/azure-storage-blob-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "2c52fed91f58db3b5cc56f2db48030e4", "sha256": "71d08a195a8cc732cbc0a45a552c7c8d495a2ef3721cbc993d0e586d0493d529" }, "downloads": -1, "filename": "azure_storage_blob-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2c52fed91f58db3b5cc56f2db48030e4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 75001, "upload_time": "2018-02-06T06:58:40", "url": "https://files.pythonhosted.org/packages/bb/c5/eb29c445c2e1bb1aead35c42e0b303dc52df2dfd6579c8917be0c8a7cc47/azure_storage_blob-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a31cc5f8c63cef4c56278746c9a69a74", "sha256": "4fdcdc20e36d0f97a58bdffe1b26fc2b8b983c59ff8625e961c188c925891c66" }, "downloads": -1, "filename": "azure-storage-blob-1.1.0.tar.gz", "has_sig": false, "md5_digest": "a31cc5f8c63cef4c56278746c9a69a74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72065, "upload_time": "2018-02-06T06:58:46", "url": "https://files.pythonhosted.org/packages/4c/fe/1fc268311cb48db9d9cfcc82e516938785288cac41ec9f1b0a79d7a49e8e/azure-storage-blob-1.1.0.tar.gz" } ], "1.2.0rc1": [ { "comment_text": "", "digests": { "md5": "b66a75b868c7e03c6fc28f28a8d49e2d", "sha256": "59376c0020b84c99713cb9472813614fda052c7e5280372a1007944c4169e75c" }, "downloads": -1, "filename": "azure_storage_blob-1.2.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b66a75b868c7e03c6fc28f28a8d49e2d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 75564, "upload_time": "2018-05-23T01:02:32", "url": "https://files.pythonhosted.org/packages/f4/b1/4913bd9a9f56edf75940b458bddf8c85087fe002daf4649722bb9d5aa2ac/azure_storage_blob-1.2.0rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cb8e63657a5519284d6c987d06e536ab", "sha256": "32d49c2eb014d6f3db5568d06a35393c1a8e1dc40e5dcaa3e30adcebde369533" }, "downloads": -1, "filename": "azure-storage-blob-1.2.0rc1.tar.gz", "has_sig": false, "md5_digest": "cb8e63657a5519284d6c987d06e536ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67278, "upload_time": "2018-05-23T01:02:17", "url": "https://files.pythonhosted.org/packages/2c/2e/ccc4a3e08ddd6dfd4f012f5a1f0fa2bf515dfad5ad3bc64a8bf22f3a53bb/azure-storage-blob-1.2.0rc1.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "e6a309ed5182c151675caf0029b79e34", "sha256": "439232df8f9bade670d90e964f35a8f8a7182f7aec319fafa1dea6bf3d2e3ea9" }, "downloads": -1, "filename": "azure_storage_blob-1.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e6a309ed5182c151675caf0029b79e34", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 76605, "upload_time": "2018-06-27T00:56:06", "url": "https://files.pythonhosted.org/packages/f1/c6/5fec29383de6d8ab995f5aa424ccb3ebd7b2d9d8fed2fded01cfc9af0bb8/azure_storage_blob-1.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "94b5b39a7450fd20568e771e7372f576", "sha256": "35f0581d5a98a63b5004dca1fb2d9e73ed3fe1dcdd5f41376ccdbf0684bc6275" }, "downloads": -1, "filename": "azure-storage-blob-1.3.0.tar.gz", "has_sig": false, "md5_digest": "94b5b39a7450fd20568e771e7372f576", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68383, "upload_time": "2018-06-27T00:56:34", "url": "https://files.pythonhosted.org/packages/6d/46/b3c649953495ccfc74524bc393fd5aba605c9c2efc0a205b908c3335d585/azure-storage-blob-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "101759ae56fb085beaf07723c3d5f811", "sha256": "308058abfd789f5830d91f6407eb00a7b04925b2b9af267aecfb46c335802cdc" }, "downloads": -1, "filename": "azure_storage_blob-1.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "101759ae56fb085beaf07723c3d5f811", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 77141, "upload_time": "2018-07-16T23:49:47", "url": "https://files.pythonhosted.org/packages/dd/26/45de0cb737aeeeb2fa56cf12ab0042ba64dafd24bcc50bf8c8cdf913a1a6/azure_storage_blob-1.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1b9fac2aa7ac7686ec218467bf3fa86c", "sha256": "8cab5420ba6646ead09fdb497646f735b12645cba8efed96a86f7b370e175ade" }, "downloads": -1, "filename": "azure-storage-blob-1.3.1.tar.gz", "has_sig": false, "md5_digest": "1b9fac2aa7ac7686ec218467bf3fa86c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70096, "upload_time": "2018-07-16T23:49:50", "url": "https://files.pythonhosted.org/packages/41/0d/a9d63c97b59c9853a9a491809c3c2d06e766bbfb72366549939ee9b7e554/azure-storage-blob-1.3.1.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "5a2fcce08bc2a14ba1b1c58b82bfe950", "sha256": "baa828607e21e5c7b6ceb2ede9894d465adf586373c2f7c988fe55eca8e9048c" }, "downloads": -1, "filename": "azure_storage_blob-1.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5a2fcce08bc2a14ba1b1c58b82bfe950", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 75352, "upload_time": "2018-11-10T02:23:12", "url": "https://files.pythonhosted.org/packages/f7/b7/9b20c39bf411e896d110d01f2551e6e7b397fde6eb06b07293fe29705d13/azure_storage_blob-1.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9053355ea6ff35521f670cddcb8bcb34", "sha256": "65ebe2e54460566c2077c6b3773a2a0623eabc7b95602010cb51b84077087fda" }, "downloads": -1, "filename": "azure-storage-blob-1.4.0.tar.gz", "has_sig": false, "md5_digest": "9053355ea6ff35521f670cddcb8bcb34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71709, "upload_time": "2018-11-10T02:22:59", "url": "https://files.pythonhosted.org/packages/f0/55/59ceddf35a312bd5d2b279096502ca460e312a1b33fa5706b198ec08cbbf/azure-storage-blob-1.4.0.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "1c4a3639474639e6309f8ab3a2520bda", "sha256": "6577e9ebca6fd1cf47795f88a1f0949c003fae62eeb6479a05631b765cf73b80" }, "downloads": -1, "filename": "azure_storage_blob-1.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1c4a3639474639e6309f8ab3a2520bda", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 75549, "upload_time": "2019-02-16T00:36:43", "url": "https://files.pythonhosted.org/packages/25/f4/a307ed89014e9abb5c5cfc8ca7f8f797d12f619f17a6059a6fd4b153b5d0/azure_storage_blob-1.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7662371a51374e9d729b492601c79b9f", "sha256": "f187a878e7a191f4e098159904f72b4146cf70e1aabaf6484ab4ba72fc6f252c" }, "downloads": -1, "filename": "azure-storage-blob-1.5.0.tar.gz", "has_sig": false, "md5_digest": "7662371a51374e9d729b492601c79b9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71909, "upload_time": "2019-02-16T00:36:11", "url": "https://files.pythonhosted.org/packages/52/2e/21691005508ab03b88b99ad13b52275543623be9acfc96f4ce162b6a35e3/azure-storage-blob-1.5.0.tar.gz" } ], "12.0.0b1": [ { "comment_text": "", "digests": { "md5": "b07d7711f542c8a52fba9e2336f5d499", "sha256": "d799b86959677e8389edcc8a980f50542785872ea3a7e4d780d2383e6d827fd5" }, "downloads": -1, "filename": "azure_storage_blob-12.0.0b1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b07d7711f542c8a52fba9e2336f5d499", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 182612, "upload_time": "2019-07-02T21:11:19", "url": "https://files.pythonhosted.org/packages/e0/63/beec239d22aad5714ea648d103062edd9e4bbcedb95edf2ba6550192a301/azure_storage_blob-12.0.0b1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "14bb904f7a8341e284e86c2a4874cf96", "sha256": "1a7c4e2062c477966f6859a2938692f3fc5e4b726a1965237afa53220f718ecf" }, "downloads": -1, "filename": "azure-storage-blob-12.0.0b1.zip", "has_sig": false, "md5_digest": "14bb904f7a8341e284e86c2a4874cf96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 196857, "upload_time": "2019-07-02T21:11:23", "url": "https://files.pythonhosted.org/packages/65/72/2c67c99537bd5d09c5abeb0c12a0827da0ca8b06b8d003f0c8db957a997f/azure-storage-blob-12.0.0b1.zip" } ], "12.0.0b2": [ { "comment_text": "", "digests": { "md5": "b747bed03a1dc41500483cd8587118dd", "sha256": "1b033b76630c2f402d5131c53b5d30c80313625f0df08a80f95880580bfdd3b1" }, "downloads": -1, "filename": "azure_storage_blob-12.0.0b2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b747bed03a1dc41500483cd8587118dd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 226673, "upload_time": "2019-08-06T22:16:02", "url": "https://files.pythonhosted.org/packages/c4/8a/c0a878819a7a15b1b50585add862b0faa93be30605c3f4ae26bc0f32c147/azure_storage_blob-12.0.0b2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0d2e862a1b9c83669c43ec0e549eb7bb", "sha256": "dc1f4c2eb3e4da134c3f1cdc164835f41ba9ced3b3d142b3c75bb657bd0fdf01" }, "downloads": -1, "filename": "azure-storage-blob-12.0.0b2.zip", "has_sig": false, "md5_digest": "0d2e862a1b9c83669c43ec0e549eb7bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 243553, "upload_time": "2019-08-06T22:16:07", "url": "https://files.pythonhosted.org/packages/53/e9/e1f8998d757fa7080a02078e99d1393f8d25fdcb8488167a1216cf266d62/azure-storage-blob-12.0.0b2.zip" } ], "12.0.0b3": [ { "comment_text": "", "digests": { "md5": "6c754f8c5089c278ad700061ee54a9eb", "sha256": "5b4bf3300b34ed4508340f6376ebf6674148a31de4036c29ffb95e8c63972cd3" }, "downloads": -1, "filename": "azure_storage_blob-12.0.0b3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6c754f8c5089c278ad700061ee54a9eb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 259400, "upload_time": "2019-09-11T00:41:44", "url": "https://files.pythonhosted.org/packages/9e/ff/6b4765c781b81f72995442b0c431038ff278aee3e186cbc4497a8f6a639b/azure_storage_blob-12.0.0b3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a35cedee281dd32c1c452e2516844fe3", "sha256": "d5ca474d47ced7712995e51ce57e12351decb577820554d4a9df5c87351f42c4" }, "downloads": -1, "filename": "azure-storage-blob-12.0.0b3.zip", "has_sig": false, "md5_digest": "a35cedee281dd32c1c452e2516844fe3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 276873, "upload_time": "2019-09-11T00:41:51", "url": "https://files.pythonhosted.org/packages/72/3e/5c301a0c118b9623fb3281bf126f3db6baa1fbb8ba9d05ac5b20de44e70d/azure-storage-blob-12.0.0b3.zip" } ], "12.0.0b4": [ { "comment_text": "", "digests": { "md5": "3bfed882a12821d603e5dd98e895cc0b", "sha256": "c07390afe80fee37053519daf1edcd1d91cb8b7d678b5698929383aac0dc4e78" }, "downloads": -1, "filename": "azure_storage_blob-12.0.0b4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3bfed882a12821d603e5dd98e895cc0b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 264806, "upload_time": "2019-10-09T00:08:47", "url": "https://files.pythonhosted.org/packages/66/25/1919070ec8d09b20ee068e14b05a8dcac6f12a63d736935089197dbd4f0f/azure_storage_blob-12.0.0b4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "80099ca85daf38cb52fc09fe05b80c7d", "sha256": "5155dd00a1e29c12e61d9d5a68a2ee0f82295e756aeb02dd4e4b5f09b1cea941" }, "downloads": -1, "filename": "azure-storage-blob-12.0.0b4.zip", "has_sig": false, "md5_digest": "80099ca85daf38cb52fc09fe05b80c7d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24049377, "upload_time": "2019-10-09T00:08:50", "url": "https://files.pythonhosted.org/packages/29/bd/4ba14492555a8f55643036f857b7c4be810181d78f3b25d4a18680e43fc3/azure-storage-blob-12.0.0b4.zip" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "9cfb13d0d3fe407b26d8f6884dccef02", "sha256": "4347975a3e23a97368951a2b1812074b2e6d35db4fbc443b3b7d53c6c1c39d5e" }, "downloads": -1, "filename": "azure_storage_blob-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9cfb13d0d3fe407b26d8f6884dccef02", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 80463, "upload_time": "2019-05-09T02:09:07", "url": "https://files.pythonhosted.org/packages/29/14/f275e2d46d8c3e3e683121e392c2fa02d87065464f6a8827b1086b835fde/azure_storage_blob-2.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "15c02fc76915094a16f6b632df2bd370", "sha256": "065db876259366853af55968de2ca0fec036e0c6a56ce204516a16ab3082d183" }, "downloads": -1, "filename": "azure-storage-blob-2.0.0.tar.gz", "has_sig": false, "md5_digest": "15c02fc76915094a16f6b632df2bd370", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75749, "upload_time": "2019-05-09T02:08:53", "url": "https://files.pythonhosted.org/packages/40/69/2b46f291de9b0aa3f15fd57562b830241e4a3fb01d13d6281def8d8a3bf2/azure-storage-blob-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "8b2071f1c57a541a779af54e94d8c2a1", "sha256": "c427a13caf72048643313e3cac2ad8080f4dfc7ec8ce47454d4aab9cc20006a4" }, "downloads": -1, "filename": "azure_storage_blob-2.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8b2071f1c57a541a779af54e94d8c2a1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 80462, "upload_time": "2019-05-09T19:56:25", "url": "https://files.pythonhosted.org/packages/f3/c2/43f12778df68d26998eaea1b52177db7ea6a3d4cea81cce914eb339adee4/azure_storage_blob-2.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3c1eaaf89f7773d20ca6fc927ebdc84c", "sha256": "93381abf5d18222b9dd8a07fa5f810536427c047663433f4c77877d047877032" }, "downloads": -1, "filename": "azure-storage-blob-2.0.1.tar.gz", "has_sig": false, "md5_digest": "3c1eaaf89f7773d20ca6fc927ebdc84c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75732, "upload_time": "2019-05-09T19:56:15", "url": "https://files.pythonhosted.org/packages/c5/34/d8f27776120042fec155c906020747981035a243fc3496798c89d0bd0df7/azure-storage-blob-2.0.1.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "731cdf463cd3fca4edb2a2f98ef37238", "sha256": "a8e91a51d4f62d11127c7fd8ba0077385c5b11022f0269f8a2a71b9fc36bef31" }, "downloads": -1, "filename": "azure_storage_blob-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "731cdf463cd3fca4edb2a2f98ef37238", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 88133, "upload_time": "2019-08-02T04:24:12", "url": "https://files.pythonhosted.org/packages/3e/84/610f379b46d7d3c2d48eadeed6a12b6d46a43100fea70534f5992d0ac996/azure_storage_blob-2.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ffeefb03be2cebc0464155aece29ab55", "sha256": "b90323aad60f207f9f90a0c4cf94c10acc313c20b39403398dfba51f25f7b454" }, "downloads": -1, "filename": "azure-storage-blob-2.1.0.tar.gz", "has_sig": false, "md5_digest": "ffeefb03be2cebc0464155aece29ab55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83156, "upload_time": "2019-08-02T04:24:19", "url": "https://files.pythonhosted.org/packages/0e/76/bd6eadc0f2b481bcfb43c37caacf77372401fc013c1431861561b794e06a/azure-storage-blob-2.1.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "731cdf463cd3fca4edb2a2f98ef37238", "sha256": "a8e91a51d4f62d11127c7fd8ba0077385c5b11022f0269f8a2a71b9fc36bef31" }, "downloads": -1, "filename": "azure_storage_blob-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "731cdf463cd3fca4edb2a2f98ef37238", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 88133, "upload_time": "2019-08-02T04:24:12", "url": "https://files.pythonhosted.org/packages/3e/84/610f379b46d7d3c2d48eadeed6a12b6d46a43100fea70534f5992d0ac996/azure_storage_blob-2.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ffeefb03be2cebc0464155aece29ab55", "sha256": "b90323aad60f207f9f90a0c4cf94c10acc313c20b39403398dfba51f25f7b454" }, "downloads": -1, "filename": "azure-storage-blob-2.1.0.tar.gz", "has_sig": false, "md5_digest": "ffeefb03be2cebc0464155aece29ab55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83156, "upload_time": "2019-08-02T04:24:19", "url": "https://files.pythonhosted.org/packages/0e/76/bd6eadc0f2b481bcfb43c37caacf77372401fc013c1431861561b794e06a/azure-storage-blob-2.1.0.tar.gz" } ] }