Skip to content

Commit c4b8a86

Browse files
Follow quickstart template.
1 parent 717fc7a commit c4b8a86

File tree

1 file changed

+15
-17
lines changed

1 file changed

+15
-17
lines changed

articles/service-bus-messaging/service-bus-python-how-to-use-queues.md

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
22
title: Get Started with Azure Service Bus Queues (Python)
3-
description: This tutorial shows you how to send messages to and receive messages from Azure Service Bus queues using the Python programming language.
3+
description: This quickstart shows you how to send messages to and receive messages from Azure Service Bus queues using the Python programming language.
44
author: spelluru
55
ms.author: spelluru
66
ms.date: 06/11/2025
7-
ms.topic: tutorial
7+
ms.topic: quickstart
88
ms.devlang: python
99
ms.custom: devx-track-python, mode-api, passwordless-python
1010
#customer intent: As a developer, I want to learn how to send and receive messages with Azure Service Bus queues by using the Python programming language.
1111
---
1212

13-
# Tutorial: Send messages to and receive messages from Azure Service Bus queues (Python)
13+
# Quickstart: Send messages to and receive messages from Azure Service Bus queues (Python)
1414
> [!div class="op_single_selector" title1="Select the programming language:"]
1515
> - [C#](service-bus-dotnet-get-started-with-queues.md)
1616
> - [Java](service-bus-java-how-to-use-queues.md)
@@ -19,21 +19,20 @@ ms.custom: devx-track-python, mode-api, passwordless-python
1919
2020
This article provides step-by-step instructions for a simple scenario of sending messages to a Service Bus queue and receiving them. You can find prebuilt JavaScript and TypeScript samples for Azure Service Bus in the [Azure SDK for Python repository on GitHub](https://github.com/azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus/samples).
2121

22-
In this tutorial, you:
22+
In this quickstart, you:
2323

24-
> [!div class="checklist"]
25-
> - Create a Service Bus namespace, using the Azure portal.
26-
> - Create a Service Bus queue, using the Azure portal.
27-
> - Write Python code to use the [azure-servicebus](https://pypi.org/project/azure-servicebus/) package to:
28-
>
29-
> - Send a set of messages to the queue.
30-
> - Receive those messages from the queue.
24+
- Create a Service Bus namespace, using the Azure portal.
25+
- Create a Service Bus queue, using the Azure portal.
26+
- Write Python code to use the [azure-servicebus](https://pypi.org/project/azure-servicebus/) package to:
3127

32-
## Prerequisites
28+
- Send a set of messages to the queue.
29+
- Receive those messages from the queue.
3330

3431
If you're new to the service, see [Service Bus overview](service-bus-messaging-overview.md) before you begin.
3532

36-
- An Azure subscription. To complete this tutorial, you need an Azure account. You can activate your [Monthly Azure credits for Visual Studio subscribers](https://azure.microsoft.com/pricing/member-offers/credit-for-visual-studio-subscribers/?WT.mc_id=A85619ABF) or sign-up for a [free account](https://azure.microsoft.com/free/?WT.mc_id=A85619ABF).
33+
## Prerequisites
34+
35+
- An Azure subscription. To complete this quickstart, you need an Azure account. You can activate your [Monthly Azure credits for Visual Studio subscribers](https://azure.microsoft.com/pricing/member-offers/credit-for-visual-studio-subscribers/?WT.mc_id=A85619ABF) or sign-up for a [free account](https://azure.microsoft.com/free/?WT.mc_id=A85619ABF).
3736

3837
- [Python 3.8](https://www.python.org/downloads/) or higher.
3938

@@ -56,7 +55,7 @@ Note the following values, which you use in the code:
5655

5756
---
5857

59-
This tutorial works with samples that you can copy and run using Python. For instructions on how to create a Python application, see [Quickstart: Deploy a Python web app to Azure App Service](../app-service/quickstart-python.md). For more information about installing packages used in this tutorial, see [How to install Azure library packages for Python](/azure/developer/python/sdk/azure-sdk-install).
58+
This quickstart works with samples that you can copy and run using Python. For instructions on how to create a Python application, see [Quickstart: Deploy a Python web app to Azure App Service](../app-service/quickstart-python.md). For more information about installing packages used in this quickstart, see [How to install Azure library packages for Python](/azure/developer/python/sdk/azure-sdk-install).
6059

6160
[!INCLUDE [service-bus-create-namespace-portal](./includes/service-bus-create-namespace-portal.md)]
6261

@@ -68,7 +67,7 @@ This tutorial works with samples that you can copy and run using Python. For ins
6867

6968
### [Passwordless (Recommended)](#tab/passwordless)
7069

71-
1. To install the required Python packages for this Service Bus tutorial, open a Command Prompt window that has Python in its path.
70+
1. To install the required Python packages for this Service Bus quickstart, open a Command Prompt window that has Python in its path.
7271
1. Change the directory to the folder where you want to have your samples.
7372
1. Install the following packages:
7473

@@ -80,7 +79,7 @@ This tutorial works with samples that you can copy and run using Python. For ins
8079

8180
### [Connection string](#tab/connection-string)
8281

83-
1. To install the required Python packages for this Service Bus tutorial, open a Command Prompt window that has Python in its path.
82+
1. To install the required Python packages for this Service Bus quickstart, open a Command Prompt window that has Python in its path.
8483
1. Change the directory to the folder where you want to have your samples.
8584
1. Install the following package:
8685

@@ -416,7 +415,6 @@ Select the queue on this **Overview** page to navigate to the **Service Bus Queu
416415
417416
:::image type="content" source="./media/service-bus-python-how-to-use-queues/queue-details.png" alt-text="Queue details":::
418417
419-
420418
## Related content
421419
422420
See the following documentation and samples:

0 commit comments

Comments
 (0)