18 lines
475 B
Python
Executable File
18 lines
475 B
Python
Executable File
#!/usr/bin/env python
|
|
import pika
|
|
import sys
|
|
|
|
connection = pika.AsyncoreConnection(pika.ConnectionParameters(
|
|
host='localhost'))
|
|
channel = connection.channel()
|
|
|
|
channel.exchange_declare(exchange='logs',
|
|
type='fanout')
|
|
|
|
message = ' '.join(sys.argv[1:]) or "info: Hello World!"
|
|
channel.basic_publish(exchange='logs',
|
|
routing_key='',
|
|
body=message)
|
|
print " [x] Sent %r" % (message,)
|
|
connection.close()
|