13 lines
384 B
Python
13 lines
384 B
Python
|
import pika
|
||
|
import sys
|
||
|
|
||
|
connection = pika.BlockingConnection(
|
||
|
pika.ConnectionParameters(host='localhost'))
|
||
|
channel = connection.channel()
|
||
|
|
||
|
channel.exchange_declare(exchange='logs', exchange_type='fanout')
|
||
|
|
||
|
message = ' '.join(sys.argv[1:]) or "info: Hello World!"
|
||
|
channel.basic_publish(exchange='logs', routing_key='', body=message)
|
||
|
print(f" [x] Sent {message}")
|
||
|
connection.close()
|