Skip to content

Commit b21d791

Browse files
authored
Merge pull request #102899 from msebolt/quickstart-consistency-pr4
initial draft
2 parents 4ca317f + f2d9dde commit b21d791

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

articles/batch/quick-run-python.md

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 'Quickstart: Run an Azure Batch job - Python API'
2+
title: Use Python API to run an Azure Batch job
33
description: Quickly run an Azure Batch sample job and tasks using the Batch Python client library. Learn the key concepts of the Batch service.
44
services: batch
55
author: LauraBrenner
@@ -13,23 +13,19 @@ ms.author: labrenne
1313
ms.custom: [seo-python-october2019, mvc]
1414
---
1515

16-
# Quickstart: Run your first Batch job with the Python API
16+
# Quickstart: Use Python API to run an Azure Batch job
1717

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.
1919

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-
![Overview of the Azure Batch workflow](./media/quick-run-python/overview-of-the-azure-batch-workflow.png)
20+
Here you'll learn key concepts of the Batch service and be ready to try Batch with more realistic workloads at larger scale.
2321

24-
[!INCLUDE [quickstarts-free-trial-note.md](../../includes/quickstarts-free-trial-note.md)]
22+
![Overview of the Azure Batch workflow](./media/quick-run-python/overview-of-the-azure-batch-workflow.png)
2523

2624
## Prerequisites
2725

28-
* [Python version 2.7 or 3.3 or later](https://www.python.org/downloads/)
29-
30-
* [pip](https://pip.pypa.io/en/stable/installing/) package manager
31-
32-
* 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
3329

3430
## Sign in to Azure
3531

0 commit comments

Comments
 (0)