DAS_2024_1/bazunov_andrew_lab_4/first/send.py

11 lines
299 B
Python
Raw Normal View History

2024-10-26 17:51:52 +04:00
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()