You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/batch/quick-run-python.md
+8-12Lines changed: 8 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: 'Quickstart: Run an Azure Batch job - Python API'
2
+
title: Use Python API to run an Azure Batch job
3
3
description: Quickly run an Azure Batch sample job and tasks using the Batch Python client library. Learn the key concepts of the Batch service.
4
4
services: batch
5
5
author: LauraBrenner
@@ -13,23 +13,19 @@ ms.author: labrenne
13
13
ms.custom: [seo-python-october2019, mvc]
14
14
---
15
15
16
-
# Quickstart: Run your first Batch job with the Python API
16
+
# Quickstart: Use Python API to run an Azure Batch job
17
17
18
-
This quickstart runs an Azure Batch job from an application built on the Azure Batch Python API. After completing this quickstart, you will understand the key concepts of the Batch service and be ready to try Batch with more realistic workloads at larger scale.
18
+
In this quickstart, you use the Python API to run an Azure Batch job from an app. The app uploads input data files to Azure Storage and creates a *pool* of Batch compute nodes (virtual machines). It then creates a *job* that runs *tasks*to process each input file in the pool using a basic command.
19
19
20
-
The app uploads several input data files to Azure storage and then creates a *pool* of Batch compute nodes (virtual machines). Then, it creates a sample *job* that runs *tasks* to process each input file on the pool using a basic command.
21
-
22
-

20
+
Here you'll learn key concepts of the Batch service and be ready to try Batch with more realistic workloads at larger scale.
* An Azure Batch account and a linked Azure Storage account. To create these accounts, see the Batch quickstarts using the [Azure portal](quick-create-portal.md) or [Azure CLI](quick-create-cli.md).
26
+
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio).
27
+
- An **Azure Batch** account and linked **Azure Storage** account. Use the [Azure portal](quick-create-portal.md) or [CLI](quick-create-cli.md) to create these accounts.
28
+
-[Python](https://python.org/downloads), version 2.7 or 3.3 or later, including the [pip](https://pip.pypa.io/en/stable/installing/) package manager
0 commit comments