rabbitmq-tutorials/python/emit_log_topic.py
Brian Stajkowski d04a0934cf Correct emit_log_topic.py
Sys.argv will always be greater than 1, but in the instance
where the severity is supplied it would be greather than 2.

Closes rabbitmq/rabbitmq-tutorials#110
2016-12-19 13:18:04 -08:00

19 lines
583 B
Python
Executable File

#!/usr/bin/env python
import pika
import sys
connection = pika.BlockingConnection(pika.ConnectionParameters(
host='localhost'))
channel = connection.channel()
channel.exchange_declare(exchange='topic_logs',
exchange_type='topic')
routing_key = sys.argv[1] if len(sys.argv) > 2 else 'anonymous.info'
message = ' '.join(sys.argv[2:]) or 'Hello World!'
channel.basic_publish(exchange='topic_logs',
routing_key=routing_key,
body=message)
print(" [x] Sent %r:%r" % (routing_key, message))
connection.close()