16 lines
457 B
Python
16 lines
457 B
Python
import pika
|
|
import sys
|
|
|
|
# see https://www.rabbitmq.com/tutorials/tutorial-three-python.html
|
|
|
|
connection = pika.BlockingConnection(
|
|
pika.ConnectionParameters(host='localhost'))
|
|
channel = connection.channel()
|
|
|
|
channel.exchange_declare(exchange='logs', exchange_type='fanout')
|
|
|
|
message = ' '.join(sys.argv[1:]) or b"info: Hello World!"
|
|
channel.basic_publish(exchange='logs', routing_key='', body=message)
|
|
print(" [x] Sent %r" % message)
|
|
connection.close()
|