{ "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-queue", "package_url": "https://pypi.org/project/azure-storage-queue/", "platform": "", "project_url": "https://pypi.org/project/azure-storage-queue/", "project_urls": { "Homepage": "https://github.com/Azure/azure-storage-python" }, "release_url": "https://pypi.org/project/azure-storage-queue/2.1.0/", "requires_dist": [ "azure-common (>=1.1.5)", "azure-storage-common (~=2.1)" ], "requires_python": "", "summary": "Microsoft Azure Storage Queue Client Library for Python", "version": "2.1.0" }, "last_serial": 5947171, "releases": { "0.37.0": [ { "comment_text": "", "digests": { "md5": "4b567513af7efe4f3bf88fbc8ad894b0", "sha256": "66028949fffc7edfd3895bdf82b72d9566957dbbade13d71f67f46e7e2f505a6" }, "downloads": -1, "filename": "azure_storage_queue-0.37.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4b567513af7efe4f3bf88fbc8ad894b0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 28711, "upload_time": "2017-10-05T00:54:38", "url": "https://files.pythonhosted.org/packages/7a/7e/6a780d9084b03fc89b649530e04d4c06a7468e1ed4f945ac3b02ed7861da/azure_storage_queue-0.37.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ea162076af536b95004b4582b331c5dd", "sha256": "d1874536935a4c67eed186ab9b3769abef679d553c05a2b3f492b420c74a8d02" }, "downloads": -1, "filename": "azure-storage-queue-0.37.0.tar.gz", "has_sig": false, "md5_digest": "ea162076af536b95004b4582b331c5dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26898, "upload_time": "2017-10-05T00:54:25", "url": "https://files.pythonhosted.org/packages/d1/5c/b97676205f90166c55f4414dfb1423e56e7483ebef6164932daf8bd4f9ea/azure-storage-queue-0.37.0.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "37878488d8b881a2671454b0ac237d6f", "sha256": "a8fc6e7e4ebdb948083456eba24c92029ca25dacfeb4a0c363aad176b0b07a36" }, "downloads": -1, "filename": "azure_storage_queue-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "37878488d8b881a2671454b0ac237d6f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 26301, "upload_time": "2018-01-23T03:07:20", "url": "https://files.pythonhosted.org/packages/18/58/b18006806911078f97f345dc3e43d7e144f45b1fb55f876a453b735cc743/azure_storage_queue-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ec29105cca152b1666d5fb3849d60235", "sha256": "af124570d78368c9aa86b73add50fb4d0cfaa10c567ddafecc2fa600b5f45b85" }, "downloads": -1, "filename": "azure-storage-queue-1.0.0.tar.gz", "has_sig": false, "md5_digest": "ec29105cca152b1666d5fb3849d60235", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28837, "upload_time": "2018-01-23T03:07:27", "url": "https://files.pythonhosted.org/packages/94/67/35b8867c482ddc353e4dcd9f31a36ce10393c68be35dd4e0c38d57a57ad3/azure-storage-queue-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "938d712ff40d6cc5a44cf693ebb1d570", "sha256": "20b0a8475072321b75014599d3858b01ff2a362013364f2cb44fa9b3b398a305" }, "downloads": -1, "filename": "azure_storage_queue-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "938d712ff40d6cc5a44cf693ebb1d570", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 26307, "upload_time": "2018-02-06T06:58:44", "url": "https://files.pythonhosted.org/packages/7b/a6/4b634664725a15009e5309c4c67aa900775b8f28cb17e08deef12a1fe5f4/azure_storage_queue-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1d57e8d33a7a52ca3616df97f5006674", "sha256": "aa37eae2190c8ff4ed66e79de6d34fe9658ecfbf0d108765528c32ed8bee0f50" }, "downloads": -1, "filename": "azure-storage-queue-1.1.0.tar.gz", "has_sig": false, "md5_digest": "1d57e8d33a7a52ca3616df97f5006674", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28905, "upload_time": "2018-02-06T06:58:49", "url": "https://files.pythonhosted.org/packages/7f/d3/2f4f9998df9a33de0badc1068b8c41857174025ac66937caff8bbf2858b6/azure-storage-queue-1.1.0.tar.gz" } ], "1.2.0rc1": [ { "comment_text": "", "digests": { "md5": "8ebb87c65951ad8b696905e14baf8fb5", "sha256": "f982779a1d652739f47bd6b05bbb4f3595e4d547396d105ffa1e19b64c468de8" }, "downloads": -1, "filename": "azure_storage_queue-1.2.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8ebb87c65951ad8b696905e14baf8fb5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 26489, "upload_time": "2018-05-23T01:02:35", "url": "https://files.pythonhosted.org/packages/40/31/835083fe3bd9e3bc69aa041d7d6f101b322ef79bc3e0c7ba23d2c136609a/azure_storage_queue-1.2.0rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f155390962ea490f6d604963ba663007", "sha256": "957126094fc240560440a0bbc76158eb20fd77fa479ed9d0e62b6eb5d5ece302" }, "downloads": -1, "filename": "azure-storage-queue-1.2.0rc1.tar.gz", "has_sig": false, "md5_digest": "f155390962ea490f6d604963ba663007", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23588, "upload_time": "2018-05-23T01:02:21", "url": "https://files.pythonhosted.org/packages/ca/9f/fdbe1f0b4a0659a4f30a9ae1598f8295a81587099edf7307a3d6ccbe5935/azure-storage-queue-1.2.0rc1.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "791f76014a09eaad4dd33525a1fbb6ba", "sha256": "0ddb9232597d4c7df8b210f4f72a1090f0eb8b929225e508bb22ec197e15c039" }, "downloads": -1, "filename": "azure_storage_queue-1.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "791f76014a09eaad4dd33525a1fbb6ba", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 26584, "upload_time": "2018-06-27T00:56:09", "url": "https://files.pythonhosted.org/packages/3c/1f/81331ab4bec277cc07ef1219b2dfcc7469f983a73451410470faed8652e6/azure_storage_queue-1.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c51919c82bee038288237db6868a773e", "sha256": "3a170b87e5ddfc3de61ede9597e52a5bbcd0e70cce4818e1cbd84b62d7b89d9e" }, "downloads": -1, "filename": "azure-storage-queue-1.3.0.tar.gz", "has_sig": false, "md5_digest": "c51919c82bee038288237db6868a773e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23706, "upload_time": "2018-06-27T00:56:40", "url": "https://files.pythonhosted.org/packages/2a/16/7b1c6a3250e0eec6c88257a0fc6a376352b108cb1494c628b19802da7dad/azure-storage-queue-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "ad470dce38a14f71aacc501d0cc59e15", "sha256": "d28e6f854ed5d719d62637c1b5c2b74d9c67584bc326de5ce41ba0af73e3a3f0" }, "downloads": -1, "filename": "azure_storage_queue-1.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ad470dce38a14f71aacc501d0cc59e15", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23305, "upload_time": "2018-11-10T02:23:18", "url": "https://files.pythonhosted.org/packages/72/94/4db044f1c155b40c5ebc037bfd9d1c24562845692c06798fbe869fe160e6/azure_storage_queue-1.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a4f0c61c7f18299264f4bb601fd1d6d9", "sha256": "0bafe9e61c0ce7b3f3ecadea21e931dab3248bd4989dc327a8666c5deae7f7ed" }, "downloads": -1, "filename": "azure-storage-queue-1.4.0.tar.gz", "has_sig": false, "md5_digest": "a4f0c61c7f18299264f4bb601fd1d6d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23827, "upload_time": "2018-11-10T02:23:04", "url": "https://files.pythonhosted.org/packages/00/36/c5fef7dd2c991771659aa86eef05d8b4eec5af2158180020d21cdeebddcf/azure-storage-queue-1.4.0.tar.gz" } ], "12.0.0b1": [ { "comment_text": "", "digests": { "md5": "825096e34bd165f7d86631e44964e2de", "sha256": "e4c521d38e73e639d4c8521128f750a1e360e822e0808466de136fc2324df1fd" }, "downloads": -1, "filename": "azure_storage_queue-12.0.0b1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "825096e34bd165f7d86631e44964e2de", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 101047, "upload_time": "2019-07-02T21:11:21", "url": "https://files.pythonhosted.org/packages/01/b4/ce619673f4f05eaea479c8f21e9e077bf9d8466c13d656c89bdf2d392946/azure_storage_queue-12.0.0b1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b1e26a3c0a852b31d1457637c143032f", "sha256": "4dea61e5e62b26c1770107544eae20baa639b8e585649a7edc92fc9d1738625d" }, "downloads": -1, "filename": "azure-storage-queue-12.0.0b1.zip", "has_sig": false, "md5_digest": "b1e26a3c0a852b31d1457637c143032f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 114373, "upload_time": "2019-07-02T21:11:26", "url": "https://files.pythonhosted.org/packages/88/91/72f1f50e94196ec89c31c4a55a3be5bc28d64e573eed44d40602082acec3/azure-storage-queue-12.0.0b1.zip" } ], "12.0.0b2": [ { "comment_text": "", "digests": { "md5": "7087bfde3c5f20e07c1127cd9b9479ee", "sha256": "f79db35fe2a57331acc3661072e5803b1e46fa57829e6cc2ef02781ffcb6ad9b" }, "downloads": -1, "filename": "azure_storage_queue-12.0.0b2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7087bfde3c5f20e07c1127cd9b9479ee", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 130393, "upload_time": "2019-08-06T22:16:06", "url": "https://files.pythonhosted.org/packages/3c/c5/1940322903730cc4ba1e2cd41114f77ec9871ff83fd8f751a72601e0f61a/azure_storage_queue-12.0.0b2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9edd09e097484a87bb49b63223339062", "sha256": "ef44638df3a17ab0e4965f3d1dc3e04d33b0fa66722230a0a12e21248685eec5" }, "downloads": -1, "filename": "azure-storage-queue-12.0.0b2.zip", "has_sig": false, "md5_digest": "9edd09e097484a87bb49b63223339062", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 146964, "upload_time": "2019-08-06T22:16:11", "url": "https://files.pythonhosted.org/packages/d6/4a/4e19349daa84a066ad1aca413133507f6442fe9d58b17a951e8c4c43b1d5/azure-storage-queue-12.0.0b2.zip" } ], "12.0.0b3": [ { "comment_text": "", "digests": { "md5": "f95e92325335ef405a97dd928bca614c", "sha256": "584fe725ecdb31fcf93d10dcef9eec2589d52a47e3697fc860c0dd45b8583175" }, "downloads": -1, "filename": "azure_storage_queue-12.0.0b3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f95e92325335ef405a97dd928bca614c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 133755, "upload_time": "2019-09-11T00:41:49", "url": "https://files.pythonhosted.org/packages/06/de/5561e29320cfcf21c0a5c5df116985065c40bc7cce319917b7e775d7c154/azure_storage_queue-12.0.0b3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2d7c2f25ed0a04e0f8332b5c41378482", "sha256": "caee16f77cbbd9ac1e0bf32f31c8d7db71cb27f998f43187a9c9a9d36b5386e3" }, "downloads": -1, "filename": "azure-storage-queue-12.0.0b3.zip", "has_sig": false, "md5_digest": "2d7c2f25ed0a04e0f8332b5c41378482", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 150903, "upload_time": "2019-09-11T00:41:55", "url": "https://files.pythonhosted.org/packages/ce/48/07b4a0b22e31efec2736090075ccddb60a2bec9c51908e58256ad8c175ed/azure-storage-queue-12.0.0b3.zip" } ], "12.0.0b4": [ { "comment_text": "", "digests": { "md5": "2a45fc12ae707dffb46eaa0cbc233d89", "sha256": "4457a894122c990543af58756bf9c892c37f8508c44fda593fc7e0a4792a928d" }, "downloads": -1, "filename": "azure_storage_queue-12.0.0b4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2a45fc12ae707dffb46eaa0cbc233d89", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 126241, "upload_time": "2019-10-09T00:08:58", "url": "https://files.pythonhosted.org/packages/1a/e8/ec11821be457c8bc9355177281e4ac1d5b2e20260b0c88baef21df3ad98b/azure_storage_queue-12.0.0b4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c6b2f587bb1d0583048952fe8f10f949", "sha256": "09c6cfe62d6f4a9d25bb9d0f875662a1446fea54397fd3b98e6833d4f44bba2d" }, "downloads": -1, "filename": "azure-storage-queue-12.0.0b4.zip", "has_sig": false, "md5_digest": "c6b2f587bb1d0583048952fe8f10f949", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 535960, "upload_time": "2019-10-09T00:09:01", "url": "https://files.pythonhosted.org/packages/21/d1/dc986160e9d07ecadfb6539a831a130cb8614b92b71960ca389ce7b624d1/azure-storage-queue-12.0.0b4.zip" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "2807f1586ab02de5a63ee3ae2cc10a0e", "sha256": "8d3461c07dd496a5766d87a36407cb9a1343c5b2779f111fc1eee59043605043" }, "downloads": -1, "filename": "azure_storage_queue-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2807f1586ab02de5a63ee3ae2cc10a0e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 24518, "upload_time": "2019-05-09T02:09:09", "url": "https://files.pythonhosted.org/packages/ca/7b/420123f35075f5b3876a449ca642f446e9952412c1745df57617a37ed059/azure_storage_queue-2.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cf78d3bbc8f2007a3d9965a88ab0dd99", "sha256": "d7645ff724b9bea9e43b62b99e15f7e90a7a9ee9811c1e6089754cac7bb00884" }, "downloads": -1, "filename": "azure-storage-queue-2.0.0.tar.gz", "has_sig": false, "md5_digest": "cf78d3bbc8f2007a3d9965a88ab0dd99", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24005, "upload_time": "2019-05-09T02:08:56", "url": "https://files.pythonhosted.org/packages/11/8d/1479cff16b616330d92da74f5a481e0e3b154b176070593024a79a5af6c8/azure-storage-queue-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "bdb83cb8f06a49180dba0615bf52b258", "sha256": "b6db51dc47b12203098c979d565e154ee9058e719f5a22240d55fcade0b943b5" }, "downloads": -1, "filename": "azure_storage_queue-2.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bdb83cb8f06a49180dba0615bf52b258", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 24516, "upload_time": "2019-05-09T19:56:29", "url": "https://files.pythonhosted.org/packages/dc/e5/61bf95effca59c7cbbb47aa44412d0e91047a6dc414ef2088848213e18e0/azure_storage_queue-2.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7c9475ce7775d3aa76ffa5c5c3d6a856", "sha256": "3ae66ae6319b474499e5b1bb01d27226213e3051bb9ca05a2e4bd66affe810f0" }, "downloads": -1, "filename": "azure-storage-queue-2.0.1.tar.gz", "has_sig": false, "md5_digest": "7c9475ce7775d3aa76ffa5c5c3d6a856", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24001, "upload_time": "2019-05-09T19:56:20", "url": "https://files.pythonhosted.org/packages/25/70/c04a9eea2d10e46fa6baa444344d529427e379a2013068bb651d77185a8e/azure-storage-queue-2.0.1.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "c9210c9be3a5dfe264ef92f8c21e92f8", "sha256": "7af861e7453be79885e9e7b2253ca772e335c161ed119615428cf455753523f9" }, "downloads": -1, "filename": "azure_storage_queue-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c9210c9be3a5dfe264ef92f8c21e92f8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 24533, "upload_time": "2019-08-02T04:24:18", "url": "https://files.pythonhosted.org/packages/69/08/a0dcde53f9203fa83111e28fc368404c818a8c54c077ae66559b237c9dd4/azure_storage_queue-2.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "89d2646d2fdaa37e809fad0e310548e8", "sha256": "14e82d3691f1bbd23f2aff143a6c17af3c297164f6e597d223b65a67051ba278" }, "downloads": -1, "filename": "azure-storage-queue-2.1.0.tar.gz", "has_sig": false, "md5_digest": "89d2646d2fdaa37e809fad0e310548e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24035, "upload_time": "2019-08-02T04:24:24", "url": "https://files.pythonhosted.org/packages/8d/af/dcdcde78fb7cd017031ab23a4961341924c5d336488b8d2ec16536d3037e/azure-storage-queue-2.1.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c9210c9be3a5dfe264ef92f8c21e92f8", "sha256": "7af861e7453be79885e9e7b2253ca772e335c161ed119615428cf455753523f9" }, "downloads": -1, "filename": "azure_storage_queue-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c9210c9be3a5dfe264ef92f8c21e92f8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 24533, "upload_time": "2019-08-02T04:24:18", "url": "https://files.pythonhosted.org/packages/69/08/a0dcde53f9203fa83111e28fc368404c818a8c54c077ae66559b237c9dd4/azure_storage_queue-2.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "89d2646d2fdaa37e809fad0e310548e8", "sha256": "14e82d3691f1bbd23f2aff143a6c17af3c297164f6e597d223b65a67051ba278" }, "downloads": -1, "filename": "azure-storage-queue-2.1.0.tar.gz", "has_sig": false, "md5_digest": "89d2646d2fdaa37e809fad0e310548e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24035, "upload_time": "2019-08-02T04:24:24", "url": "https://files.pythonhosted.org/packages/8d/af/dcdcde78fb7cd017031ab23a4961341924c5d336488b8d2ec16536d3037e/azure-storage-queue-2.1.0.tar.gz" } ] }