{ "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-file", "package_url": "https://pypi.org/project/azure-storage-file/", "platform": "", "project_url": "https://pypi.org/project/azure-storage-file/", "project_urls": { "Homepage": "https://github.com/Azure/azure-storage-python" }, "release_url": "https://pypi.org/project/azure-storage-file/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 File Client Library for Python", "version": "2.1.0" }, "last_serial": 5947170, "releases": { "0.37.0": [ { "comment_text": "", "digests": { "md5": "16423c67da1486c724dff6024ba44f0c", "sha256": "20ef664f840efeb3f383a41893c8448a5dd0b897c56839fdbf1c052e0fbbf08f" }, "downloads": -1, "filename": "azure_storage_file-0.37.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "16423c67da1486c724dff6024ba44f0c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 35944, "upload_time": "2017-10-05T00:54:35", "url": "https://files.pythonhosted.org/packages/99/11/3e5c9c4ca2dd1a32c5d9da3cc07cbf5336b24092529e7add34b9173dfc61/azure_storage_file-0.37.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6b55dc3d9f247970bdf9d385095fabe0", "sha256": "feb338bb300552af33be9ffe603e4864999b7b52fe278f69b5fe9b7ba9236c09" }, "downloads": -1, "filename": "azure-storage-file-0.37.0.tar.gz", "has_sig": false, "md5_digest": "6b55dc3d9f247970bdf9d385095fabe0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34040, "upload_time": "2017-10-05T00:54:22", "url": "https://files.pythonhosted.org/packages/81/9e/7a7174e81f39c0ca3605af14828de44f6b88dffa2e754f9c94e84bfc6227/azure-storage-file-0.37.0.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "56396b779c0a62793cf0b1386c26208c", "sha256": "617627bc5a3f23e9a7825167d602124634c9c2a08ed88297530a10ecd9437535" }, "downloads": -1, "filename": "azure_storage_file-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "56396b779c0a62793cf0b1386c26208c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 33457, "upload_time": "2018-01-23T03:07:18", "url": "https://files.pythonhosted.org/packages/2b/b6/f7cea9bfb0ea61166ec2671b721674e0989f35ce59d944fa86b1ae3f131b/azure_storage_file-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "622457594cec7f30712508342f70bc3e", "sha256": "394f3e3937764735fc6228a0a1b085b856ca7c5e2cb907ea42aa31cd963964ec" }, "downloads": -1, "filename": "azure-storage-file-1.0.0.tar.gz", "has_sig": false, "md5_digest": "622457594cec7f30712508342f70bc3e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34706, "upload_time": "2018-01-23T03:07:24", "url": "https://files.pythonhosted.org/packages/82/0e/0ba363db7ec3b15dd9b99a12e9a81a1c3e6b46313644f02ae3006f22cf7c/azure-storage-file-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "d099b2932e5151c95de21f2eca7919e2", "sha256": "9cd80baee0ebc062581d747e55de5d8eafcf8fe68c81628403f28e3335e392b5" }, "downloads": -1, "filename": "azure_storage_file-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d099b2932e5151c95de21f2eca7919e2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 33455, "upload_time": "2018-02-06T06:58:43", "url": "https://files.pythonhosted.org/packages/e9/2b/7d365610e5e303def65d54499b0dc24b66531b94254f26bf27a142485a5f/azure_storage_file-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a661e5c1595c3a39c7e2bdcbb847ba1b", "sha256": "bef3719bad2c3c3a04e8051f5e26e2f557800721f89aff04286c7abb4b97819a" }, "downloads": -1, "filename": "azure-storage-file-1.1.0.tar.gz", "has_sig": false, "md5_digest": "a661e5c1595c3a39c7e2bdcbb847ba1b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34743, "upload_time": "2018-02-06T06:58:48", "url": "https://files.pythonhosted.org/packages/6b/e6/303b74059b8c1c81e4448a88a77ed8452446c523ec12731be0f121da8598/azure-storage-file-1.1.0.tar.gz" } ], "1.2.0rc1": [ { "comment_text": "", "digests": { "md5": "4d497aedd265692fabe74e196b6fe1b9", "sha256": "5754e451cf23fd6313dc6605d1048a0e4fbb6280c613c3ebe733996d65822ff7" }, "downloads": -1, "filename": "azure_storage_file-1.2.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4d497aedd265692fabe74e196b6fe1b9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 33548, "upload_time": "2018-05-23T01:02:34", "url": "https://files.pythonhosted.org/packages/d5/43/9d1f7ada08487ca381ca5abe6630a705a847931627cba7dd991c8078552a/azure_storage_file-1.2.0rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "34b2add607ed117a78dd962b82a0e389", "sha256": "939c17912e202bd8f4fe29759c2b1de05967216e7f57d35acc8165d3e8e505f5" }, "downloads": -1, "filename": "azure-storage-file-1.2.0rc1.tar.gz", "has_sig": false, "md5_digest": "34b2add607ed117a78dd962b82a0e389", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29466, "upload_time": "2018-05-23T01:02:19", "url": "https://files.pythonhosted.org/packages/25/d6/aafa2eac2c3b55ac37071da454d1f527bd61d0e799e5ffa70fd7f198c3cf/azure-storage-file-1.2.0rc1.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "b1a8eb2200b796abf5b4e629af0b510e", "sha256": "5e5f4aaadcd065a26b72308f7af8bca13b0f08f2f5d28e6628073c15635609df" }, "downloads": -1, "filename": "azure_storage_file-1.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b1a8eb2200b796abf5b4e629af0b510e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 33734, "upload_time": "2018-06-27T00:56:08", "url": "https://files.pythonhosted.org/packages/88/4d/3c4a9adc0b56bad17a86fe1725dadea2b3b87dd91a23d82440ff4a443756/azure_storage_file-1.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3af9f0b61d3987bd49936cb0cb994933", "sha256": "60843e8e81072e2d932a492490938afa92228bddb2a47006da9c951fb60dfec5" }, "downloads": -1, "filename": "azure-storage-file-1.3.0.tar.gz", "has_sig": false, "md5_digest": "3af9f0b61d3987bd49936cb0cb994933", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29696, "upload_time": "2018-06-27T00:56:38", "url": "https://files.pythonhosted.org/packages/df/76/1917ef821609d958eecc951f769f97f3c387270dc3802a0a04c11e2eda10/azure-storage-file-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "ac1c17b14793b20cab0e20f9a8627faf", "sha256": "34ad8f485bd804043e0dd03e87d7e61c882473bb27690cbf3bdcffd61ae67509" }, "downloads": -1, "filename": "azure_storage_file-1.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ac1c17b14793b20cab0e20f9a8627faf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 34055, "upload_time": "2018-07-16T23:49:48", "url": "https://files.pythonhosted.org/packages/0b/d3/bc9c75a41df9dc4713ccbf934cdf7db90804032d46691514dbb93a87b2e9/azure_storage_file-1.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "73fec1adb6c98233f5b6fade47620dfb", "sha256": "3f16962d06a4bb3321b6545d4168050abd2b549f607d1fcb2633d268e8323576" }, "downloads": -1, "filename": "azure-storage-file-1.3.1.tar.gz", "has_sig": false, "md5_digest": "73fec1adb6c98233f5b6fade47620dfb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29985, "upload_time": "2018-07-16T23:49:51", "url": "https://files.pythonhosted.org/packages/08/ee/3e04c3233f3da99eb2268b657fe96c4d3ec281964fc153a5e15162d18b58/azure-storage-file-1.3.1.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "266adce7f1391ea77d6904d34923dcd9", "sha256": "65831e66594cdda36e02f5566ea9d8a6ad35eca6691c28f1fbb49f23987752ff" }, "downloads": -1, "filename": "azure_storage_file-1.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "266adce7f1391ea77d6904d34923dcd9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 30748, "upload_time": "2018-11-10T02:23:16", "url": "https://files.pythonhosted.org/packages/c9/33/6c611563412ffc409b2413ac50e3a063133ea235b86c137759774c77f3ad/azure_storage_file-1.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "51db4bc23035a01805b9fffec5c76e9f", "sha256": "5217b0441b671246a8d5f506a459fa3af084eeb9297c5be3bbe95d75d23bac2f" }, "downloads": -1, "filename": "azure-storage-file-1.4.0.tar.gz", "has_sig": false, "md5_digest": "51db4bc23035a01805b9fffec5c76e9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30079, "upload_time": "2018-11-10T02:23:02", "url": "https://files.pythonhosted.org/packages/0c/e7/20dd3e89958d9e67dfb6f68d30207152a431f97803f79dc15a14d1ced4c1/azure-storage-file-1.4.0.tar.gz" } ], "12.0.0b1": [ { "comment_text": "", "digests": { "md5": "338aa77af1e769311cbfa8ad484818c2", "sha256": "e996a228cd632f6f586228381eaa2823b52884899dce2259876e5eb78f0eab6f" }, "downloads": -1, "filename": "azure_storage_file-12.0.0b1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "338aa77af1e769311cbfa8ad484818c2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 127717, "upload_time": "2019-07-03T18:38:59", "url": "https://files.pythonhosted.org/packages/77/30/ed4dbad190e2258d39efb6df6a6b6da1b4eba525049f2612cf3c3cffe8fb/azure_storage_file-12.0.0b1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "11627ca99305fcc06f7dc6b4dc6b65d5", "sha256": "d938d71459b108740d896220c0ed17530ca83fd0f82781a044b80ed7e03bd3be" }, "downloads": -1, "filename": "azure-storage-file-12.0.0b1.zip", "has_sig": false, "md5_digest": "11627ca99305fcc06f7dc6b4dc6b65d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 141352, "upload_time": "2019-07-03T18:39:01", "url": "https://files.pythonhosted.org/packages/86/62/c316f9278d8c0324e79ee724cfcbf6f31e0274f114126fed0776cd393533/azure-storage-file-12.0.0b1.zip" } ], "12.0.0b2": [ { "comment_text": "", "digests": { "md5": "46659bf96d6988f4aed374f5cd8ef428", "sha256": "65bd6977ae6dbab4d0ff567b5afe33d8ed0c9c3cb24ddb7c5563e3df0e22e57c" }, "downloads": -1, "filename": "azure_storage_file-12.0.0b2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "46659bf96d6988f4aed374f5cd8ef428", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 161165, "upload_time": "2019-08-06T22:16:04", "url": "https://files.pythonhosted.org/packages/0c/17/3c609cd1f86e2794e883f592c0a5cb886655d738c7e63e7bde36c15f6f61/azure_storage_file-12.0.0b2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c2ef14316bf115f61b16533daf08f391", "sha256": "9e602a9d3f5ed0d1775c4d7dd3b8eea1e4fdcc79051f0bd4a66d8e8a60e54cf2" }, "downloads": -1, "filename": "azure-storage-file-12.0.0b2.zip", "has_sig": false, "md5_digest": "c2ef14316bf115f61b16533daf08f391", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 178994, "upload_time": "2019-08-06T22:16:09", "url": "https://files.pythonhosted.org/packages/28/59/83952d5be4c05ffebaee2f1ede6bc8af189fa7880d6c83a4c42ad85c9deb/azure-storage-file-12.0.0b2.zip" } ], "12.0.0b3": [ { "comment_text": "", "digests": { "md5": "a7cda502f9e94363576d64562bc47f86", "sha256": "a67c09ca570bea0c4bbe76da02d6ca181b01cc9e8ac8c3c0f3a05880ed8815f6" }, "downloads": -1, "filename": "azure_storage_file-12.0.0b3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a7cda502f9e94363576d64562bc47f86", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 176992, "upload_time": "2019-09-11T00:41:47", "url": "https://files.pythonhosted.org/packages/33/4b/ee860fe9dd0a2782cc2c59bb5bf1369a407e15d08570b279b110b072dc80/azure_storage_file-12.0.0b3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "95358038d89e5e6bbad0dda40b5ab6dd", "sha256": "5fd6a676515d5c428e14285198fa8588958fc530d44c4e0548c58624e4787e0d" }, "downloads": -1, "filename": "azure-storage-file-12.0.0b3.zip", "has_sig": false, "md5_digest": "95358038d89e5e6bbad0dda40b5ab6dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 196116, "upload_time": "2019-09-11T00:41:53", "url": "https://files.pythonhosted.org/packages/42/07/c4ee68cdde7036fa073bc06b84bd40f3a46ecd4b08a45202b681267e135b/azure-storage-file-12.0.0b3.zip" } ], "12.0.0b4": [ { "comment_text": "", "digests": { "md5": "978e8b7cab8edfe08b94360a926069d2", "sha256": "e2d64d6ed8e3d8b45e83ca090a21f1e4d9e2b7e5017818156d7c46dd3ad92a21" }, "downloads": -1, "filename": "azure_storage_file-12.0.0b4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "978e8b7cab8edfe08b94360a926069d2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 177924, "upload_time": "2019-10-09T00:08:57", "url": "https://files.pythonhosted.org/packages/b6/14/3464ec7c9ae271a56d7f1736d071817cf4eaac5d6678de7fabea155536f3/azure_storage_file-12.0.0b4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1e81bcb0d5a555c0284f5c2d3b7cca4f", "sha256": "9f5cce67b9251e8babf1ec46332d07c7a9b34faef0c631db83e8edc9b8df3255" }, "downloads": -1, "filename": "azure-storage-file-12.0.0b4.zip", "has_sig": false, "md5_digest": "1e81bcb0d5a555c0284f5c2d3b7cca4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3242096, "upload_time": "2019-10-09T00:09:00", "url": "https://files.pythonhosted.org/packages/62/bb/0de4a11a27f1f7dea0bb636a549f3c7947a4b36125edf34b9f6c81a34608/azure-storage-file-12.0.0b4.zip" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "7eb01c1cd1ecc1e49b0894506453b1bc", "sha256": "a8245f1c166865a9bccf7172f81aeae728ac15596dfcb4aa5622ddd946e36383" }, "downloads": -1, "filename": "azure_storage_file-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7eb01c1cd1ecc1e49b0894506453b1bc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 33633, "upload_time": "2019-05-09T02:09:08", "url": "https://files.pythonhosted.org/packages/97/e1/883cbc289d1d82a4bb4a4edf3de3368279cc6db13d7e0d8abbdb0f776dc8/azure_storage_file-2.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2938137f900868b760bad1b420bfc093", "sha256": "3775824b0406f7ac42ec1db8285e927bd41edf937ca2620b7760af47970e28b3" }, "downloads": -1, "filename": "azure-storage-file-2.0.0.tar.gz", "has_sig": false, "md5_digest": "2938137f900868b760bad1b420bfc093", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33004, "upload_time": "2019-05-09T02:08:54", "url": "https://files.pythonhosted.org/packages/17/ac/192264d8f8936ec03a1200f51af85684b7b869f044a3c0122237295d2dfb/azure-storage-file-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "72d71f67d52909ce337584cc5e575bfa", "sha256": "7e3273a5d68bd0aae85b4a9b782edecd3c2d64d6e6395dc28c2c602c5e35dae3" }, "downloads": -1, "filename": "azure_storage_file-2.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "72d71f67d52909ce337584cc5e575bfa", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 33630, "upload_time": "2019-05-09T19:56:28", "url": "https://files.pythonhosted.org/packages/b3/13/8cd3d3aa54a6af2e0769d5fac1c649c961d2d1a9ade84f3d3d94f38cad38/azure_storage_file-2.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4a799ad62c82a51b7f708dd4d4eaefd8", "sha256": "6e7697d0b89de26cbaf171cef9855cbf80a66546db92963bc719d307fb0031ac" }, "downloads": -1, "filename": "azure-storage-file-2.0.1.tar.gz", "has_sig": false, "md5_digest": "4a799ad62c82a51b7f708dd4d4eaefd8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32975, "upload_time": "2019-05-09T19:56:18", "url": "https://files.pythonhosted.org/packages/07/9e/d44e42378686b4c7221e261daa9e241c10ae60d01c9ded4b7346199a06fe/azure-storage-file-2.0.1.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "bd480cfa188d55a02b184a48795a6d6a", "sha256": "07e01b6b1ccbac97946a3abab773fdc4904965577c3afa0151e786c463bd7260" }, "downloads": -1, "filename": "azure_storage_file-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bd480cfa188d55a02b184a48795a6d6a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36957, "upload_time": "2019-08-02T04:24:16", "url": "https://files.pythonhosted.org/packages/e0/30/e7ce72375b8982fb093fad7eb9bdb5c4b6165bf94e9f4087aca538927f99/azure_storage_file-2.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "92515386c19b6753c996e10460e36f3e", "sha256": "3559b9c7ab13450c66ea833eb82c28233bee24f1bd8ca19aa7d27f8c23d5bc53" }, "downloads": -1, "filename": "azure-storage-file-2.1.0.tar.gz", "has_sig": false, "md5_digest": "92515386c19b6753c996e10460e36f3e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36191, "upload_time": "2019-08-02T04:24:23", "url": "https://files.pythonhosted.org/packages/8d/7e/4061dfef750fca42eb5d29e84255b3fca9796ee899699ba0506088520a49/azure-storage-file-2.1.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "bd480cfa188d55a02b184a48795a6d6a", "sha256": "07e01b6b1ccbac97946a3abab773fdc4904965577c3afa0151e786c463bd7260" }, "downloads": -1, "filename": "azure_storage_file-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bd480cfa188d55a02b184a48795a6d6a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36957, "upload_time": "2019-08-02T04:24:16", "url": "https://files.pythonhosted.org/packages/e0/30/e7ce72375b8982fb093fad7eb9bdb5c4b6165bf94e9f4087aca538927f99/azure_storage_file-2.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "92515386c19b6753c996e10460e36f3e", "sha256": "3559b9c7ab13450c66ea833eb82c28233bee24f1bd8ca19aa7d27f8c23d5bc53" }, "downloads": -1, "filename": "azure-storage-file-2.1.0.tar.gz", "has_sig": false, "md5_digest": "92515386c19b6753c996e10460e36f3e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36191, "upload_time": "2019-08-02T04:24:23", "url": "https://files.pythonhosted.org/packages/8d/7e/4061dfef750fca42eb5d29e84255b3fca9796ee899699ba0506088520a49/azure-storage-file-2.1.0.tar.gz" } ] }