11 lines
341 B
Python
11 lines
341 B
Python
import pika
|
|
|
|
connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
|
|
channel = connection.channel()
|
|
|
|
channel.queue_declare(queue='dunaev')
|
|
|
|
channel.basic_publish(exchange='',routing_key='dunaev',body='Hello, my name is Oleg, i am from ISEbd-41!')
|
|
print(" [x] Отправлено сообщение")
|
|
|
|
connection.close() |