rabbitmq-tutorials/python/send.py
mrKazzila 336420b5ee
style: change double quotes to single quotes (where possible)
style: sort imports & format parameters onto separate lines for better clarity

Format all python files using `black`
2024-01-10 13:31:43 -08:00

15 lines
325 B
Python
Executable File

#!/usr/bin/env python
import pika
connection = pika.BlockingConnection(
pika.ConnectionParameters(host="localhost"),
)
channel = connection.channel()
channel.queue_declare(queue="hello")
channel.basic_publish(exchange="", routing_key="hello", body="Hello World!")
print(" [x] Sent 'Hello World!'")
connection.close()