2021-04-10 16:12:40 +02:00

14 lines
368 B
Python

import pika
# see https://www.rabbitmq.com/tutorials/tutorial-one-python.html
connection = pika.BlockingConnection(
pika.ConnectionParameters(host='localhost'))
channel = connection.channel()
channel.queue_declare(queue='hello')
channel.basic_publish(exchange='', routing_key='hello', body=b'Hello World!')
print(" [x] Sent 'Hello World!'")
connection.close()