DAS_2024_1/chernyshov_nikita_lab_4/lesson1/send.py
Никита Чернышов 44907b5438 chernyshov_nikita_lab_4 is ready
2024-12-15 17:03:30 +04:00

11 lines
299 B
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()