{ "info": { "author": "Microsoft Corporation", "author_email": "azpysdkhelp@microsoft.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "Microsoft Azure SDK for Python\n==============================\n\nThis is the Microsoft Azure Batch Client Library.\n\nThis package has been tested with Python 2.7, 3.4, 3.5, 3.6 and 3.7.\n\nFor a more complete set of Azure libraries, see the `azure `__ bundle package.\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:\n\n.. code:: shell\n\n pip uninstall azure\n\n\nUsage\n=====\n\nFor code examples, see `the Batch samples repo\n`__\non GitHub or see `Batch\n`__\non docs.microsoft.com.\n\n\nProvide Feedback\n================\n\nIf you encounter any bugs or have suggestions, please file an issue in the\n`Issues `__\nsection of the project.\n\n\n.. image:: https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-batch%2FREADME.png\n\n\n.. :changelog:\n\nRelease History\n===============\n\n8.0.0 (2019-8-5)\n++++++++++++++++++\n\n- Using REST API version 2019-08-01.10.0.\n * Added ability to specify a collection of public IPs on `NetworkConfiguration` via the new `public_ips` property. This guarantees nodes in the Pool will have an IP from the list user provided IPs.\n * Added ability to mount remote file-systems on each node of a pool via the `mount_configuration` property on `CloudPool`.\n * Shared Image Gallery images can now be specified on the `virtual_machine_image_id` property of `ImageReference` by referencing the image via its ARM ID.\n * **Breaking** When not specified, the default value for `wait_for_success` on `StartTask` is now `True` (was `False`).\n * **Breaking** When not specified, the default value for `scope` on `AutoUserSpecification` is now always `Pool` (was `Task` on Windows nodes, `Pool` on Linux nodes).\n\n7.0.0 (2019-6-11)\n++++++++++++++++++\n\n- Using REST API version 2019-06-01.9.0.\n * **Breaking** Replaced `AccountOperations.list_node_agent_skus` with `AccountOperations.list_supported_images`. `list_supported_images` contains all of the same information originally available in `list_node_agent_skus` but in a clearer format. New non-verified images are also now returned. Additional information about `capabilities` and `batch_support_end_of_life` is accessible on the `ImageInformation` object returned by `list_supported_images`.\n * Now support network security rules blocking network access to a `CloudPool` based on the source port of the traffic. This is done via the `source_port_ranges` property on `network_security_group_rules`.\n * When running a container, Batch now supports executing the task in the container working directory or in the Batch task working directory. This is controlled by the `working_directory` property on `TaskContainerSettings`.\n\n6.0.1 (2019-2-26)\n++++++++++++++++++\n\n- Fix bug in TaskOperations.add_collection methods exception handling\n\n6.0.0 (2018-12-14)\n++++++++++++++++++\n\n- Using REST API version 2018-12-01.8.0.\n * **Breaking** Removed support for the `upgrade_os` API on `CloudServiceConfiguration` pools.\n - Removed `PoolOperations.upgrade_os` API.\n - Renamed `target_os_version` to `os_version` and removed `current_os_version` on `CloudServiceConfiguration`.\n - Removed `upgrading` state from `PoolState` enum.\n * **Breaking** Removed `data_egress_gi_b` and `data_ingress_gi_b` from `PoolUsageMetrics`. These properties are no longer supported.\n * **Breaking** ResourceFile improvements\n * Added the ability specify an entire Azure Storage container in `ResourceFile`. There are now three supported modes for `ResourceFile`:\n - `http_url` creates a `ResourceFile` pointing to a single HTTP URL.\n - `storage_container_url` creates a `ResourceFile` pointing to the blobs under an Azure Blob Storage container.\n - `auto_storage_container_name` creates a `ResourceFile` pointing to the blobs under an Azure Blob Storage container in the Batch registered auto-storage account.\n * URLs provided to `ResourceFile` via the `http_url` property can now be any HTTP URL. Previously, these had to be an Azure Blob Storage URL.\n * The blobs under the Azure Blob Storage container can be filtered by `blob_prefix` property.\n * **Breaking** Removed `os_disk` property from `VirtualMachineConfiguration`. This property is no longer supported.\n * Pools which set the `dynamic_vnet_assignment_scope` on `NetworkConfiguration` to be `DynamicVNetAssignmentScope.job` can now dynamically assign a Virtual Network to each node the job's tasks run on. The specific Virtual Network to join the nodes to is specified in the new `network_configuration` property on `CloudJob` and `JobSpecification`.\n - Note: This feature is in public preview. It is disabled for all Batch accounts except for those which have contacted us and requested to be in the pilot.\n * The maximum lifetime of a task is now 180 days (previously it was 7).\n * Added support on Windows pools for creating users with a specific login mode (either `batch` or `interactive`) via `WindowsUserConfiguration.login_mode`.\n * The default task retention time for all tasks is now 7 days, previously it was infinite.\n- **Breaking** Renamed the `base_url` parameter to `batch_url` on `BatchServiceClient` class, and it is required now.\n\n5.1.1 (2018-10-16)\n++++++++++++++++++\n\n**Bugfixes**\n\n- Fix authentication class to allow HTTP session to be re-used\n\n**Note**\n\n- azure-nspkg is not installed anymore on Python 3 (PEP420-based namespace package)\n\n5.1.0 (2018-08-28)\n++++++++++++++++++\n\n- Update operation TaskOperations.add_collection with the following added functionality:\n + Retry server side errors.\n + Automatically chunk lists of more than 100 tasks to multiple requests.\n + If tasks are too large to be submitted in chunks of 100, reduces number of tasks per request.\n + Add a parameter to specify number of threads to use when submitting tasks.\n\n5.0.0 (2018-08-24)\n++++++++++++++++++\n\n- Using REST API version 2018-08-01.7.0.\n + Added `node_agent_info` in ComputeNode to return the node agent information\n + **Breaking** Removed the `validation_status` property from `TaskCounts`.\n + **Breaking** The default caching type for `DataDisk` and `OSDisk` is now `read_write` instead of `none`.\n- `BatchServiceClient` can be used as a context manager to keep the underlying HTTP session open for performance.\n- **Breaking** Model signatures are now using only keywords-arguments syntax. Each positional argument must be rewritten as a keyword argument.\n- **Breaking** The following operations signatures are changed:\n + Operation PoolOperations.enable_auto_scale\n + Operation TaskOperations.update\n + Operation ComputeNodeOperations.reimage\n + Operation ComputeNodeOperations.disable_scheduling\n + Operation ComputeNodeOperations.reboot\n + Operation JobOperations.terminate\n- Enum types now use the \"str\" mixin (class AzureEnum(str, Enum)) to improve the behavior when unrecognized enum values are encountered.\n\n4.1.3 (2018-04-24)\n++++++++++++++++++\n\n- Update some APIs' comments\n- New property `leaving_pool` in `node_counts` type.\n\n4.1.2 (2018-04-23)\n++++++++++++++++++\n\n**Bugfixes**\n\n- Compatibility of the sdist with wheel 0.31.0\n- Compatibility with msrestazure 0.4.28\n\n4.1.1 (2018-03-26)\n++++++++++++++++++\n\n- Fix regression on method `enable_auto_scale`.\n\n4.1.0 (2018-03-07)\n++++++++++++++++++\n\n- Using REST API version 2018-03-01.6.1.\n- Added the ability to query pool node counts by state, via the new `list_pool_node_counts` method.\n- Added the ability to upload Azure Batch node agent logs from a particular node, via the `upload_batch_service_logs` method.\n + This is intended for use in debugging by Microsoft support when there are problems on a node.\n\n4.0.0 (2017-09-25)\n++++++++++++++++++\n\n- Using REST API version 2017-09-01.6.0.\n- Added the ability to get a discount on Windows VM pricing if you have on-premises licenses for the OS SKUs you are deploying, via `license_type` on `VirtualMachineConfiguration`.\n- Added support for attaching empty data drives to `VirtualMachineConfiguration` based pools, via the new `data_disks` attribute on `VirtualMachineConfiguration`.\n- **Breaking** Custom images must now be deployed using a reference to an ARM Image, instead of pointing to .vhd files in blobs directly.\n + The new `virtual_machine_image_id` property on `ImageReference` contains the reference to the ARM Image, and `OSDisk.image_uris` no longer exists.\n + Because of this, `image_reference` is now a required attribute of `VirtualMachineConfiguration`.\n- **Breaking** Multi-instance tasks (created using `MultiInstanceSettings`) must now specify a `coordination_commandLine`, and `number_of_instances` is now optional and defaults to 1.\n- Added support for tasks run using Docker containers. To run a task using a Docker container you must specify a `container_configuration` on the `VirtualMachineConfiguration` for a pool, and then add `container_settings` on the Task.\n\n3.1.0 (2017-07-24)\n++++++++++++++++++\n\n- Added a new operation `job.get_task_counts` to retrieve the number of tasks in each state.\n- Added suuport for inbound endpoint configuration on a pool - there is a new `pool_endpoint_configuration` attribute on `NetworkConfiguration`.\n This property is only supported on pools that use `virtual_machine_configuration`.\n- A `ComputeNode` now also has an `endpoint_configuration` attribute with the details of the applied endpoint configuration for that node.\n\n3.0.0 (2017-05-10)\n++++++++++++++++++\n\n- Added support for the new low-priority node type; `AddPoolParameter` and `PoolSpecification` now have an additional property `target_low_priority_nodes`.\n- `target_dedicated` and `current_dedicated` on `CloudPool`, `AddPoolParameter` and `PoolSpecification` have been renamed to `target_dedicated_nodes` and `current_dedicated_nodes`.\n- `resize_error` on `CloudPool` is now a collection called `resize_errors`.\n- Added a new `is_dedicated` property on `ComputeNode`, which is `false` for low-priority nodes.\n- Added a new `allow_low_priority_node` property to `JobManagerTask`, which if `true` allows the `JobManagerTask` to run on a low-priority compute node.\n- `PoolResizeParameter` now takes two optional parameters, `target_dedicated_nodes` and `target_low_priority_nodes`, instead of one required parameter `target_dedicated`.\n At least one of these two parameters must be specified.\n- Added support for uploading task output files to persistent storage, via the `OutputFiles` property on `CloudTask` and `JobManagerTask`.\n- Added support for specifying actions to take based on a task's output file upload status, via the `file_upload_error` property on `ExitConditions`.\n- Added support for determining if a task was a success or a failure via the new `result` property on all task execution information objects.\n- Renamed `scheduling_error` on all task execution information objects to `failure_information`. `TaskFailureInformation` replaces `TaskSchedulingError` and is returned any\n time there is a task failure. This includes all previous scheduling error cases, as well as nonzero task exit codes, and file upload failures from the new output files feature.\n- Renamed `SchedulingErrorCategory` enum to `ErrorCategory`.\n- Renamed `scheduling_error` on `ExitConditions` to `pre_processing_error` to more clearly clarify when the error took place in the task life-cycle.\n- Added support for provisioning application licenses to your pool, via a new `application_licenses` property on `PoolAddParameter`, `CloudPool` and `PoolSpecification`.\n Please note that this feature is in gated public preview, and you must request access to it via a support ticket.\n- The `ssh_private_key` attribute of a `UserAccount` object has been replaced with an expanded `LinuxUserConfiguration` object with additional settings for a user ID and group ID of the\n user account.\n- Removed `unmapped` enum state from `AddTaskStatus`, `CertificateFormat`, `CertificateVisibility`, `CertStoreLocation`, `ComputeNodeFillType`, `OSType`, and `PoolLifetimeOption` as they were not ever used.\n- Improved and clarified documentation.\n\n2.0.1 (2017-04-19)\n++++++++++++++++++\n\n- This wheel package is now built with the azure wheel extension\n\n2.0.0 (2017-02-23)\n++++++++++++++++++\n\n- AAD token authentication now supported.\n- Some operation names have changed (along with their associated parameter model classes):\n * pool.list_pool_usage_metrics -> pool.list_usage_metrics\n * pool.get_all_pools_lifetime_statistics -> pool.get_all_lifetime_statistics\n * job.get_all_jobs_lifetime_statistics -> job.get_all_lifetime_statistics\n * file.get_node_file_properties_from_task -> file.get_properties_from_task\n * file.get_node_file_properties_from_compute_node -> file.get_properties_from_compute_node\n- The attribute 'file_name' in relation to file operations has been renamed to 'file_path'.\n- Change in naming convention for enum values to use underscores: e.g. StartTaskState.waitingforstarttask -> StartTaskState.waiting_for_start_task.\n- Support for running tasks under a predefined or automatic user account. This includes tasks, job manager tasks, job preparation and release tasks and pool start tasks. This feature replaces the previous 'run_elevated' option on a task.\n- Tasks now have an optional scoped authentication token (only applies to tasks and job manager tasks).\n- Support for creating pools with a list of user accounts.\n- Support for creating pools using a custom VM image (only supported on accounts created with a \"User Subscription\" pool allocation mode).\n\n1.1.0 (2016-09-15)\n++++++++++++++++++\n\n- Added support for task reactivation\n\n1.0.0 (2016-08-09)\n++++++++++++++++++\n\n- Added support for joining a CloudPool to a virtual network on using the network_configuration property.\n- Added support for application package references on CloudTask and JobManagerTask.\n- Added support for automatically terminating jobs when all tasks complete or when a task fails, via the on_all_tasks_complete property and\n the CloudTask exit_conditions property.\n\n0.30.0rc5\n+++++++++\n\n- Initial Release\n\n\n", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Azure/azure-sdk-for-python", "keywords": "", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "azure-batch", "package_url": "https://pypi.org/project/azure-batch/", "platform": "", "project_url": "https://pypi.org/project/azure-batch/", "project_urls": { "Homepage": "https://github.com/Azure/azure-sdk-for-python" }, "release_url": "https://pypi.org/project/azure-batch/8.0.0/", "requires_dist": [ "msrest (>=0.5.0)", "msrestazure (<2.0.0,>=0.4.32)", "azure-common (~=1.1)", "azure-nspkg ; python_version<'3.0'" ], "requires_python": "", "summary": "Microsoft Azure Batch Client Library for Python", "version": "8.0.0" }, "last_serial": 5672890, "releases": { "0.30.0rc2": [ { "comment_text": "", "digests": { "md5": "a2bef426fe11b6732894655c5cb3ba5b", "sha256": "9df44eeca4a599f9e2f16a7158762d9ed93704448f3877271027b0d4f13f4ba0" }, "downloads": -1, "filename": "azure_batch-0.30.0rc2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a2bef426fe11b6732894655c5cb3ba5b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 276990, "upload_time": "2016-03-31T23:24:40", "url": "https://files.pythonhosted.org/packages/f7/72/350cd84ab0b16f878eced04f1a6dfbf0adb71d5e61f335fa580c4a525007/azure_batch-0.30.0rc2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cd33cec7229481f53144a1951831fcfa", "sha256": "12cd176c07f0915299150ef38494833a1f35d823a776e9c6f1ef403e491cfe41" }, "downloads": -1, "filename": "azure-batch-0.30.0rc2.zip", "has_sig": false, "md5_digest": "cd33cec7229481f53144a1951831fcfa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 279935, "upload_time": "2016-03-31T23:24:57", "url": "https://files.pythonhosted.org/packages/5f/5e/a4619d053de4674424b851fe02f6d02b0c3543c353fe172fb97e34fb4797/azure-batch-0.30.0rc2.zip" } ], "0.30.0rc3": [ { "comment_text": "", "digests": { "md5": "1fc0b10b4d36f60a01f091ab380973fd", "sha256": "fb3b0762f106fe8959ebc4a81c686fd8be3f2dbd9db0637d943863f6c0c5b73a" }, "downloads": -1, "filename": "azure_batch-0.30.0rc3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1fc0b10b4d36f60a01f091ab380973fd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 275711, "upload_time": "2016-04-26T23:34:28", "url": "https://files.pythonhosted.org/packages/58/f3/0693f91617a2332d0f2c64d9740dbe148dc0aceb2cf1547d1c7d40d06175/azure_batch-0.30.0rc3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "81743092a7f978b2dede93f8a9d80b2f", "sha256": "b23007d0ccc1e92e211c4ecba1d46b23ed080c87efcb438d41e19f02d0d00e7d" }, "downloads": -1, "filename": "azure-batch-0.30.0rc3.zip", "has_sig": false, "md5_digest": "81743092a7f978b2dede93f8a9d80b2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 278646, "upload_time": "2016-04-26T23:31:16", "url": "https://files.pythonhosted.org/packages/b5/ba/218aef4a74b8f9f4eecb0c053ed17e9a5c6599084c54c7319edc5d10435d/azure-batch-0.30.0rc3.zip" } ], "0.30.0rc4": [ { "comment_text": "", "digests": { "md5": "8936d09fda5bd5786a836a57a0ae397c", "sha256": "f921eef2d931ba8deb08ef61464c267322f4ed010ba168c874ee909d5e4f17ff" }, "downloads": -1, "filename": "azure_batch-0.30.0rc4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8936d09fda5bd5786a836a57a0ae397c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 276004, "upload_time": "2016-05-25T22:29:42", "url": "https://files.pythonhosted.org/packages/dd/a4/4284012922f230c8ae702efc3a46e4452edd1b38c3fc837d5b7df0a6a3aa/azure_batch-0.30.0rc4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e6188d6e0cf0fdaaa5e8498b3f97bb43", "sha256": "415e7575784a1c265d1a9888dfc1a034114ca982fef173beb74217cd19a4a0c8" }, "downloads": -1, "filename": "azure-batch-0.30.0rc4.zip", "has_sig": false, "md5_digest": "e6188d6e0cf0fdaaa5e8498b3f97bb43", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 278964, "upload_time": "2016-05-25T22:26:27", "url": "https://files.pythonhosted.org/packages/f8/11/dcb983d0a3fa9f0a620305cea6f9f959df33fe7dd7eb9b9377a6887cc63e/azure-batch-0.30.0rc4.zip" } ], "0.30.0rc5": [ { "comment_text": "", "digests": { "md5": "1c9c5017344122bfd98c4e3f9846ef08", "sha256": "851eed35311cf96c37877e6a6cc6bc3a210a27b1284ed7c9a9ba6334ccc07c9e" }, "downloads": -1, "filename": "azure_batch-0.30.0rc5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1c9c5017344122bfd98c4e3f9846ef08", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 275584, "upload_time": "2016-06-23T23:28:36", "url": "https://files.pythonhosted.org/packages/02/ec/c2dd7907c7ef97ce00e3647c611c8b7dce4914c1144a81f81040834c305d/azure_batch-0.30.0rc5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b887c6776c6c0328c83405780c4b2c1d", "sha256": "bc11a0a3da9d533ac7424d131e8bc6260d27825aff9f8af3b7ed20b9ce09f9ae" }, "downloads": -1, "filename": "azure-batch-0.30.0rc5.zip", "has_sig": false, "md5_digest": "b887c6776c6c0328c83405780c4b2c1d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 278693, "upload_time": "2016-06-23T23:30:14", "url": "https://files.pythonhosted.org/packages/d2/b6/59bda36aeff9421ee1eec6b137fc95e6a1116992686c8087f7a8ec593d9b/azure-batch-0.30.0rc5.zip" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "19ca8e9ef70957de08da6ebd8c70a1d9", "sha256": "b9cebac3f378156297ee6d447c4414c568fc53297846c5354f3db172ea8a5419" }, "downloads": -1, "filename": "azure_batch-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "19ca8e9ef70957de08da6ebd8c70a1d9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 233837, "upload_time": "2016-08-10T16:02:44", "url": "https://files.pythonhosted.org/packages/1b/e3/061822b592b49c034ffdaf26339789950d1cd29579a6a130ae41be57bade/azure_batch-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f6016dd80cf44246c3e4dd83000def3e", "sha256": "0c863b863f9efa1ff1a30c4a8aa6d8bb6c80b334bb01de43ae863daefb982e3e" }, "downloads": -1, "filename": "azure-batch-1.0.0.zip", "has_sig": false, "md5_digest": "f6016dd80cf44246c3e4dd83000def3e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 236453, "upload_time": "2016-08-10T16:02:46", "url": "https://files.pythonhosted.org/packages/2a/e9/6c16410251d9e65e89a8f72f6c5bcb3b8b54928a072e9481eccebd9c1cd4/azure-batch-1.0.0.zip" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "7a933b3cb1bd1b320d78f3c9c171cd17", "sha256": "8ee4695cdc87df797b7b3a83878563c4bb3f0f37916dbaf41c3264038a734740" }, "downloads": -1, "filename": "azure_batch-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7a933b3cb1bd1b320d78f3c9c171cd17", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 235323, "upload_time": "2016-09-20T22:37:05", "url": "https://files.pythonhosted.org/packages/55/18/a5d70780fdac92d0b2ee0431613ebd592bd438f942e22cddcbfb80729846/azure_batch-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "14706f8cd85edb4bf9ee5d0463fceced", "sha256": "3f6e254151e262ccacfe185b11ce7eefe062d3e96fa7cb69216ab633c05488a4" }, "downloads": -1, "filename": "azure-batch-1.1.0.zip", "has_sig": false, "md5_digest": "14706f8cd85edb4bf9ee5d0463fceced", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 238608, "upload_time": "2016-09-20T22:37:08", "url": "https://files.pythonhosted.org/packages/b9/8d/be868b867eec417ab2650d5d27f35a3c76f525922e297cdd34a67d62cbaf/azure-batch-1.1.0.zip" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "0aa7da18d39a4034cdc31fc922248d6b", "sha256": "aa63743640409f55ff58b4d7b554b324baad3d61e9f619706c56843e9bb82931" }, "downloads": -1, "filename": "azure_batch-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0aa7da18d39a4034cdc31fc922248d6b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 272148, "upload_time": "2017-02-27T16:25:53", "url": "https://files.pythonhosted.org/packages/4a/c9/39ad1e410a80b8e474ed0bf4fd30ba9bbf20e76fb65d6e91ae93962b643d/azure_batch-2.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ec808b93f568a274d18bed338e0b516c", "sha256": "6462eee2f23f21ae06ec90fe25527788d3e16a7d31366854e4fe76b8544ec834" }, "downloads": -1, "filename": "azure-batch-2.0.0.zip", "has_sig": false, "md5_digest": "ec808b93f568a274d18bed338e0b516c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 274313, "upload_time": "2017-02-27T16:25:56", "url": "https://files.pythonhosted.org/packages/23/a4/1c722c309bd586b3aab55a9e6cdfb4dff2c4c4fdab302c8e70dcdffd0546/azure-batch-2.0.0.zip" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "d1cea0fb2c9ab0a94b0bc3eea91759d7", "sha256": "62983a5d863a3711d4f5ea2cbc4456b6e13c1c01926ffe78624e8084ec488fb5" }, "downloads": -1, "filename": "azure_batch-2.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d1cea0fb2c9ab0a94b0bc3eea91759d7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 272421, "upload_time": "2017-04-19T16:58:18", "url": "https://files.pythonhosted.org/packages/1b/53/626bb0a7634cf50000639dc47ed7fd2fcd8f152abf79857b375bbac46322/azure_batch-2.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "36866b7623f14cc65fd14dcdf6615ae3", "sha256": "6e7e086f2f2ab49802894fb5d3d47fe25bae007d0d46a06e93347a7e940c3127" }, "downloads": -1, "filename": "azure-batch-2.0.1.zip", "has_sig": false, "md5_digest": "36866b7623f14cc65fd14dcdf6615ae3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 281576, "upload_time": "2017-04-19T16:58:21", "url": "https://files.pythonhosted.org/packages/5a/f1/a29a0b7622c5f1fb80c752df0550e305fa2f8d19e800ee0b16d7ec8b2fa4/azure-batch-2.0.1.zip" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "773384a2d6a4b14319ff80610fd0c911", "sha256": "7b44e6e7cd44384d22a8ac7a0fcd1e52d7c3cc914126cabae931bbb64c4ca9c0" }, "downloads": -1, "filename": "azure_batch-3.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "773384a2d6a4b14319ff80610fd0c911", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 281166, "upload_time": "2017-05-10T21:12:57", "url": "https://files.pythonhosted.org/packages/d6/ec/160b256a94746329bbf854f07db5038999eae1b331c7feba6677082a674e/azure_batch-3.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "34d456886df29b49ff2c43d4393f32fd", "sha256": "c089979dc8579b5a738578f60df82928269608e95cf7ef2a7433a1f27c54bdaf" }, "downloads": -1, "filename": "azure-batch-3.0.0.zip", "has_sig": false, "md5_digest": "34d456886df29b49ff2c43d4393f32fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 291265, "upload_time": "2017-05-10T21:12:59", "url": "https://files.pythonhosted.org/packages/de/39/df035b541fb8fca8c79825ee2a25347c2803fc0ab55a84f44ce5d06ee324/azure-batch-3.0.0.zip" } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "e5c6b00e36d54955a68560d828fb5094", "sha256": "e8f0f40c49cf03388d146b5c2a0636cfb39e6405cdbde9ffe39bc67d1779fa61" }, "downloads": -1, "filename": "azure_batch-3.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e5c6b00e36d54955a68560d828fb5094", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 289779, "upload_time": "2017-07-24T21:14:40", "url": "https://files.pythonhosted.org/packages/ab/e2/6529bd68f6fe9f5f5a38d4dbffcbea97775dfa56e33f00ae607f7bc8c837/azure_batch-3.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "86265db33168a0625850cd874f635889", "sha256": "a4446696392105222abe14df07d6b174572f245aa55f86fa5fc55eb3a7186900" }, "downloads": -1, "filename": "azure-batch-3.1.0.zip", "has_sig": false, "md5_digest": "86265db33168a0625850cd874f635889", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 300035, "upload_time": "2017-07-24T21:14:42", "url": "https://files.pythonhosted.org/packages/91/00/710e92aa69e3938c46c4bd3e61a24df2904cfda70fea99f6c68485e99f4a/azure-batch-3.1.0.zip" } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "8387db20f5f1e41c51c1ecbf228d828a", "sha256": "e49392fddf8529dc9aa8d0b47ada0e5c5d63e68958ea08d1f6fadd211456ad29" }, "downloads": -1, "filename": "azure_batch-4.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8387db20f5f1e41c51c1ecbf228d828a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 304823, "upload_time": "2017-09-26T18:50:35", "url": "https://files.pythonhosted.org/packages/69/7f/8d3fd3ddaa3585b3403e89876179ef6c236518c528cc9e10cadf90b2fbb5/azure_batch-4.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2ce8cd39024134bea7e443a683568d28", "sha256": "35c617cb601dd286ea6d078f95e0c6b159b4c7974ed6f3693c6dffd2513285af" }, "downloads": -1, "filename": "azure-batch-4.0.0.zip", "has_sig": false, "md5_digest": "2ce8cd39024134bea7e443a683568d28", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 315481, "upload_time": "2017-09-26T18:50:37", "url": "https://files.pythonhosted.org/packages/4e/24/b6764cbb01ea09a1a8f464869ecc926cbc1d4e6dca580b2d16c974e41449/azure-batch-4.0.0.zip" } ], "4.1.0": [ { "comment_text": "", "digests": { "md5": "0e46c684de515f4aa29cc2a3ae04c5b8", "sha256": "202fa7f7bcbbc670473d58afbb56e5569a919d82147d4af753eaa7b86b794930" }, "downloads": -1, "filename": "azure_batch-4.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0e46c684de515f4aa29cc2a3ae04c5b8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 311555, "upload_time": "2018-03-21T21:23:28", "url": "https://files.pythonhosted.org/packages/5b/38/c3e4589b4de804f4224a9cfcddffed9faba4f3e5a3d7715cfc9035b4e5b0/azure_batch-4.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4f49134eecdafea3abd6530ab255ef21", "sha256": "65e288f31bdfb3b4d70284d66f0e32edd72d623d7e511ba27ad3d5238a8aaf32" }, "downloads": -1, "filename": "azure-batch-4.1.0.zip", "has_sig": false, "md5_digest": "4f49134eecdafea3abd6530ab255ef21", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 322413, "upload_time": "2018-03-21T21:23:30", "url": "https://files.pythonhosted.org/packages/8d/02/1be419b340dc51749b17f26d45915569591949a5535ab7791b59fe4f38b8/azure-batch-4.1.0.zip" } ], "4.1.1": [ { "comment_text": "", "digests": { "md5": "4559d4045d9271f55fd4cea9b3a5f506", "sha256": "32fbdc83da1d0706fee0e87f41ec052b0606145ea34e13e9d588f420c21f92c1" }, "downloads": -1, "filename": "azure_batch-4.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4559d4045d9271f55fd4cea9b3a5f506", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 311990, "upload_time": "2018-03-26T18:13:35", "url": "https://files.pythonhosted.org/packages/f2/04/17daa181589dc6956ff7fea4fba96a0ba3587d5c1b62ca9985b970c42ade/azure_batch-4.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "95ff43ee930bdf2bcb7c594ee5450acf", "sha256": "8660e8c6ba7894a20a1fdd97df322026b5f2aa822e31d63d88aa9e22909ef79b" }, "downloads": -1, "filename": "azure-batch-4.1.1.zip", "has_sig": false, "md5_digest": "95ff43ee930bdf2bcb7c594ee5450acf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 322872, "upload_time": "2018-03-26T18:13:37", "url": "https://files.pythonhosted.org/packages/52/c8/054b37e12b4482e34755329f41aca192aa13cabb6d53b26765633b028c15/azure-batch-4.1.1.zip" } ], "4.1.2": [ { "comment_text": "", "digests": { "md5": "c66e9902cf276a2b63a897a57c70c20a", "sha256": "8f32abfa643dd5a1397fe63c56141792489d18e53c16a80c7495c8ef6ef6a658" }, "downloads": -1, "filename": "azure_batch-4.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c66e9902cf276a2b63a897a57c70c20a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 311411, "upload_time": "2018-04-24T01:06:41", "url": "https://files.pythonhosted.org/packages/38/27/aa7454e8fa9fa23406f29d005fe8f06a9873cefba5295601f22ff528dae6/azure_batch-4.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "64f9c5751d4f76acf9fd0bc7a18ab133", "sha256": "d922fa76ea89dbbe0552e182ce2966c87b94de6d01d19086b879a906ec6a9aba" }, "downloads": -1, "filename": "azure-batch-4.1.2.zip", "has_sig": false, "md5_digest": "64f9c5751d4f76acf9fd0bc7a18ab133", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 320897, "upload_time": "2018-04-24T01:06:42", "url": "https://files.pythonhosted.org/packages/75/93/b76470a029544fd4c076bc24311014ff8959a03f77c77dc696d7df027eeb/azure-batch-4.1.2.zip" } ], "4.1.3": [ { "comment_text": "", "digests": { "md5": "ed87e43acf1536d8c085fc4b4f290d3e", "sha256": "017be21a9e6db92473d2e33170d5dd445596fc70d706f73552ac9c6b57a6ef1c" }, "downloads": -1, "filename": "azure_batch-4.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ed87e43acf1536d8c085fc4b4f290d3e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 314150, "upload_time": "2018-04-24T22:57:49", "url": "https://files.pythonhosted.org/packages/b1/fa/1053b5dcd88e5de8e8cd70a4d7189ffad037542963ea86b518deb612c498/azure_batch-4.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fafeec8a20214dfe1ef08a8812b715ef", "sha256": "cd71c7ebb5beab174b6225bbf79ae18d6db0c8d63227a7e514da0a75f138364c" }, "downloads": -1, "filename": "azure-batch-4.1.3.zip", "has_sig": false, "md5_digest": "fafeec8a20214dfe1ef08a8812b715ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 323724, "upload_time": "2018-04-24T22:57:51", "url": "https://files.pythonhosted.org/packages/89/45/b79192d40f82588823ff46bd27941e419758ab6628ec3d7d06ddee1434ec/azure-batch-4.1.3.zip" } ], "5.0.0": [ { "comment_text": "", "digests": { "md5": "bb3a6361447efc12c7e9749611712a47", "sha256": "d4ff8bace23f7fb02edd4bd45c580a194f0a0ec746132143c6ea9412f8528195" }, "downloads": -1, "filename": "azure_batch-5.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bb3a6361447efc12c7e9749611712a47", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 588384, "upload_time": "2018-08-28T20:25:29", "url": "https://files.pythonhosted.org/packages/5a/ca/f95e347d32fa15bca979a9f776ab9d026e9ea16cb0b319240621460d3c33/azure_batch-5.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "eaae0a6850a6cc4b2ac1869383837c6e", "sha256": "1f8460843c64d7adb98e5d120a14353facc30e9b14317ddfb23002bb6fed1dda" }, "downloads": -1, "filename": "azure-batch-5.0.0.zip", "has_sig": false, "md5_digest": "eaae0a6850a6cc4b2ac1869383837c6e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 598038, "upload_time": "2018-08-28T20:25:30", "url": "https://files.pythonhosted.org/packages/ad/ed/3c0f2ff8445c97c2577539b2f112c1d96a54f8a4d91594a1b85502ceabe3/azure-batch-5.0.0.zip" } ], "5.1.0": [ { "comment_text": "", "digests": { "md5": "a4c3c6d4ad1280ab7c29db967c71950d", "sha256": "fc10f380f74b7a016b774cb0a770d03166d5d9b5fbe58c29f5ab988727a1a76e" }, "downloads": -1, "filename": "azure_batch-5.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a4c3c6d4ad1280ab7c29db967c71950d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 593554, "upload_time": "2018-09-17T20:17:23", "url": "https://files.pythonhosted.org/packages/49/9f/e9901fcb56026447e032687b45bcf923b6bdee93e9cdaaa6b8256bb0b925/azure_batch-5.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8a64f500255b696fd40755b59adee35d", "sha256": "21687ea71a14decc57499795075ff70090f67d46f3b1e31cd3415a138ee955e8" }, "downloads": -1, "filename": "azure-batch-5.1.0.zip", "has_sig": false, "md5_digest": "8a64f500255b696fd40755b59adee35d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 603535, "upload_time": "2018-09-17T20:17:25", "url": "https://files.pythonhosted.org/packages/68/eb/e9e0bd808cc77f651053adf6d54c36a54a39558faae5290b2ccafbe811e1/azure-batch-5.1.0.zip" } ], "5.1.1": [ { "comment_text": "", "digests": { "md5": "96a61b0db92bdb21bcf6a976b2836af5", "sha256": "b45ea5f17d0dd1bf00b4126965ab10f5974652032bfb25489e8a036416564159" }, "downloads": -1, "filename": "azure_batch-5.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "96a61b0db92bdb21bcf6a976b2836af5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 593650, "upload_time": "2018-10-16T18:38:18", "url": "https://files.pythonhosted.org/packages/ba/dd/399db01e6497085a8364d91118e7a9e305063dae5cc8cbf72ee5e9ae6419/azure_batch-5.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "94f160062a0cc8782b25020feebf3fe6", "sha256": "200cb1d0e4221efc603f1f085b61a591543d3271cd51eca613dc2d8da51a23c0" }, "downloads": -1, "filename": "azure-batch-5.1.1.zip", "has_sig": false, "md5_digest": "94f160062a0cc8782b25020feebf3fe6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 602894, "upload_time": "2018-10-16T18:38:20", "url": "https://files.pythonhosted.org/packages/a4/ed/415159c1ca0fe2bd42ffc1ce18b7c1836cbf1d5e66d25dea3eaf65a4ec02/azure-batch-5.1.1.zip" } ], "6.0.0": [ { "comment_text": "", "digests": { "md5": "b1151c9113093dc4f415e8802d481744", "sha256": "d89aaa65947c80541939c16e284adaef6d0af3c52cadb7b82af94d062ad88cf3" }, "downloads": -1, "filename": "azure_batch-6.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b1151c9113093dc4f415e8802d481744", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 214692, "upload_time": "2018-12-20T19:56:12", "url": "https://files.pythonhosted.org/packages/f0/17/a9e17e280769cc1da2b3fc4db8b8074adf4e1676c1b7487bf3fbef51142f/azure_batch-6.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "64adde09132bbc530aeb2ca3240fa300", "sha256": "38a1a20a25a04c26f5bbe65f47e0c456d87ec4b6109bad2c97e10de9f48ecb38" }, "downloads": -1, "filename": "azure-batch-6.0.0.zip", "has_sig": false, "md5_digest": "64adde09132bbc530aeb2ca3240fa300", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 226823, "upload_time": "2018-12-20T19:56:14", "url": "https://files.pythonhosted.org/packages/8a/21/5e49dc8aebaa749f093cc0709dbc0713b1eab7771a1da7c71f2b470b761e/azure-batch-6.0.0.zip" } ], "6.0.1": [ { "comment_text": "", "digests": { "md5": "9c586274b5386e8e9cd3255f7f3fd639", "sha256": "26ea1add581b7ca4d34d4226e1e36c456f9fc35cb0d15192958fffafeb76fec0" }, "downloads": -1, "filename": "azure_batch-6.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9c586274b5386e8e9cd3255f7f3fd639", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 214714, "upload_time": "2019-03-12T19:57:12", "url": "https://files.pythonhosted.org/packages/20/0d/bfac3be449a6f2b07b3865699f87b8b50c8b81305ce04bd33ba0b1a8ffae/azure_batch-6.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "15ef733dbe39d029e37a20481933f06d", "sha256": "d5b0de3db0058cd69baf30e059874094abf865e24ccd82e3cd25f3a48b9676d1" }, "downloads": -1, "filename": "azure-batch-6.0.1.zip", "has_sig": false, "md5_digest": "15ef733dbe39d029e37a20481933f06d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 226998, "upload_time": "2019-03-12T19:57:13", "url": "https://files.pythonhosted.org/packages/d9/d6/dcf2c9c23b3b31afd92cd45e715c7609f9676caabbd81183cc94b67ed503/azure-batch-6.0.1.zip" } ], "7.0.0": [ { "comment_text": "", "digests": { "md5": "c97c4e280010769393b299bf24499878", "sha256": "82e20992cfa824ab09f66615edc89641a1c6aa334ba32c2dd8d05fee0e479f23" }, "downloads": -1, "filename": "azure_batch-7.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c97c4e280010769393b299bf24499878", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 222019, "upload_time": "2019-06-19T18:17:15", "url": "https://files.pythonhosted.org/packages/a5/19/cfdcdbcf08b0be9decb259c64ec8c1d15baf1a5de863ca300c4d3e9de068/azure_batch-7.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "603940c4fabf524fe1fddfbcb08f1efe", "sha256": "1225f142176a1cbc8330d0367009da41a2f7d3c3fd070fa4f80890bf9a6c15e1" }, "downloads": -1, "filename": "azure-batch-7.0.0.zip", "has_sig": false, "md5_digest": "603940c4fabf524fe1fddfbcb08f1efe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 236003, "upload_time": "2019-06-19T18:17:17", "url": "https://files.pythonhosted.org/packages/c1/0d/d553558095e3aacc0b3a14bf3459e449da54944f7b864217247d8f421e6b/azure-batch-7.0.0.zip" } ], "8.0.0": [ { "comment_text": "", "digests": { "md5": "cbf28523c6af03a089ca70ca8a5840e3", "sha256": "393a33c91e0a124b61ab436c25caebf400386b58ae088df2380221f56a6de5df" }, "downloads": -1, "filename": "azure_batch-8.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cbf28523c6af03a089ca70ca8a5840e3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 227440, "upload_time": "2019-08-13T17:37:28", "url": "https://files.pythonhosted.org/packages/e6/81/1787b8d36f3b90ef6c06fd47f27aaff248279e4c03856fba9c83b87c1ef7/azure_batch-8.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7ee8c3a19543cb6d932269b5eaa2d0f3", "sha256": "918bd0dae244a595f5de6cebf0bdab87c6ccd7d9d2f288e1543b6916ed8a16c9" }, "downloads": -1, "filename": "azure-batch-8.0.0.zip", "has_sig": false, "md5_digest": "7ee8c3a19543cb6d932269b5eaa2d0f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 241961, "upload_time": "2019-08-13T17:37:30", "url": "https://files.pythonhosted.org/packages/3b/e8/74a6bbfa8abbf75763b01d3098bc8e98731ebe617ddea8c0c31076aaf9a7/azure-batch-8.0.0.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "cbf28523c6af03a089ca70ca8a5840e3", "sha256": "393a33c91e0a124b61ab436c25caebf400386b58ae088df2380221f56a6de5df" }, "downloads": -1, "filename": "azure_batch-8.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cbf28523c6af03a089ca70ca8a5840e3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 227440, "upload_time": "2019-08-13T17:37:28", "url": "https://files.pythonhosted.org/packages/e6/81/1787b8d36f3b90ef6c06fd47f27aaff248279e4c03856fba9c83b87c1ef7/azure_batch-8.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7ee8c3a19543cb6d932269b5eaa2d0f3", "sha256": "918bd0dae244a595f5de6cebf0bdab87c6ccd7d9d2f288e1543b6916ed8a16c9" }, "downloads": -1, "filename": "azure-batch-8.0.0.zip", "has_sig": false, "md5_digest": "7ee8c3a19543cb6d932269b5eaa2d0f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 241961, "upload_time": "2019-08-13T17:37:30", "url": "https://files.pythonhosted.org/packages/3b/e8/74a6bbfa8abbf75763b01d3098bc8e98731ebe617ddea8c0c31076aaf9a7/azure-batch-8.0.0.zip" } ] }