--- id: azure-mgmt-batch version: "19.0.0" license: unclear license_treatment: unclear maintenance: active --- # azure-mgmt-batch — Microsoft Azure Batch Management Client Library for Python License: unclear · Maintenance: active · Downloads: 7.3M/mo ## What it is and what it does This is Microsoft's official Python client library for the Azure Batch Management API. It lets you programmatically create and manage Batch accounts, configure pools, deploy applications, and control job scheduling through Azure Resource Manager. The library wraps REST API calls and provides typed Python models for Batch resources. Version 19.0.0 introduces breaking changes, including a shift to hybrid models (dual dictionary/model nature) and reorganization of parameters under nested `properties` objects in create/update operations. It also removes the certificate operations group entirely. The library depends on isodate, azure-mgmt-core, and typing-extensions, and requires Python 3.9 or later. Use it for: - Automate creation and teardown of Batch accounts and compute pools for temporary workloads. - Manage application packages and job scheduling policies across multiple Batch accounts. - Integrate Batch resource provisioning into infrastructure-as-code or CI/CD pipelines. - Query pool status, monitor compute node allocation, and adjust security profiles programmatically. - Configure network isolation, encryption, and authentication modes for Batch accounts at scale. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Provides a Python client library for managing Azure Batch resources—accounts, pools, applications, and jobs—through the Azure Resource Manager API. Yes. This is the official, actively maintained Azure Batch management library for Python. Install friction is low, it supports current Python versions (3.9+), has no known vulnerabilities, and is part of a widely-used Azure SDK ecosystem. Be aware that version 19.0.0 contains breaking changes—review migration guidance if upgrading from 18.x. ## Install pip install azure-mgmt-batch uv add azure-mgmt-batch poetry add azure-mgmt-batch ## Installing azure-mgmt-batch Before you install: Low friction install with three lightweight runtime dependencies. Active maintenance: last commit 2026-08-14, released 2026-03-12. Supports Python 3.9+. Quickstart: pip install azure-mgmt-batch from azure.mgmt.batch import BatchManagementClient import os sub_id = os.getenv("AZURE_SUBSCRIPTION_ID") client = BatchManagementClient(credential=DefaultAzureCredential(), subscription_id=sub_id) Requires Azure subscription and environment variables: AZURE_CLIENT_ID, AZURE_TENANT_ID, AZURE_CLIENT_SECRET, AZURE_SUBSCRIPTION_ID. Verify before relying: - Whether version 19.0.0's breaking changes (hybrid models, parameter reorganization, certificate operations removal) affect existing codebases. - Authentication mechanism and credential handling beyond environment variable configuration. ## Package facts - License: not declared (unclear) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 7.3M/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags azure batch management client, azure batch account management, azure resource manager batch, azure batch pool management, azure batch python sdk, azure-sdk, cloud-management, batch-computing [View on SkillFed](https://skillfed.io/packages/azure-mgmt-batch) · [View on PyPI](https://pypi.org/project/azure-mgmt-batch/)