DAS_2024_1/bogdanov_dmitry_lab_4/Tutorial 1/send.py
2024-10-23 14:11:04 +04:00

13 lines
328 B
Python

import pika
connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
channel = connection.channel()
channel.queue_declare('hello')
channel.basic_publish(exchange='',
routing_key='hello',
body='Hello world!')
print(" [x] Sent 'Hello world!'")
connection.close()