1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
# coding: utf-8
# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------
"""
FILE: queue_samples_hello_world.py
DESCRIPTION:
These samples demonstrate common scenarios like instantiating a client,
creating a queue, and sending and receiving messages.
USAGE:
python queue_samples_hello_world.py
Set the environment variables with your own values before running the sample:
1) STORAGE_CONNECTION_STRING - the connection string to your storage account
"""
import os
import sys
class QueueHelloWorldSamples(object):
connection_string = os.getenv("STORAGE_CONNECTION_STRING")
def create_client_with_connection_string(self):
if self.connection_string is None:
print(
"Missing required environment variable(s). Please see specific test for more details."
+ "\n"
+ "Test: create_client_with_connection_string"
)
sys.exit(1)
# Instantiate the QueueServiceClient from a connection string
from azure.storage.queue import QueueServiceClient
queue_service = QueueServiceClient.from_connection_string(conn_str=self.connection_string)
# Get queue service properties
properties = queue_service.get_service_properties()
def queue_and_messages_example(self):
if self.connection_string is None:
print(
"Missing required environment variable(s). Please see specific test for more details."
+ "\n"
+ "Test: queue_and_messages_example"
)
sys.exit(1)
# Instantiate the QueueClient from a connection string
from azure.storage.queue import QueueClient
queue = QueueClient.from_connection_string(conn_str=self.connection_string, queue_name="myqueue")
# Create the queue
# [START create_queue]
queue.create_queue()
# [END create_queue]
try:
# Send messages
queue.send_message("I'm using queues!")
queue.send_message("This is my second message")
# Receive the messages
response = queue.receive_messages(messages_per_page=2)
# Print the content of the messages
for message in response:
print(message.content)
finally:
# [START delete_queue]
queue.delete_queue()
# [END delete_queue]
if __name__ == "__main__":
sample = QueueHelloWorldSamples()
sample.create_client_with_connection_string()
sample.queue_and_messages_example()
|