12 lines
428 B
Python
12 lines
428 B
Python
|
import pika
|
||
|
import sys
|
||
|
|
||
|
connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
|
||
|
channel = connection.channel()
|
||
|
|
||
|
channel.exchange_declare(exchange='tishka', exchange_type='fanout')
|
||
|
|
||
|
message = ' '.join(sys.argv[1:]) or "Info: Hello My Name is Alex"
|
||
|
channel.basic_publish(exchange='tishka', routing_key='', body=message)
|
||
|
print(f" [x] Отправлено сообщение: {message}")
|
||
|
connection.close()
|