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/service-bus-messaging/service-bus-python-how-to-use-queues.md
+15-17Lines changed: 15 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,16 @@
1
1
---
2
2
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.
#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.
11
11
---
12
12
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)
14
14
> [!div class="op_single_selector" title1="Select the programming language:"]
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).
21
21
22
-
In this tutorial, you:
22
+
In this quickstart, you:
23
23
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:
31
27
32
-
## Prerequisites
28
+
- Send a set of messages to the queue.
29
+
- Receive those messages from the queue.
33
30
34
31
If you're new to the service, see [Service Bus overview](service-bus-messaging-overview.md) before you begin.
35
32
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).
37
36
38
37
-[Python 3.8](https://www.python.org/downloads/) or higher.
39
38
@@ -56,7 +55,7 @@ Note the following values, which you use in the code:
56
55
57
56
---
58
57
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).
0 commit comments