Using this bundle, How can I bind multiple routing keys to a queue?
http://www.rabbitmq.com/tutorials/tutorial-four-python.html - Multiple bindings
Something like this:-
for severity in severities:
channel.queue_bind(exchange='direct_logs',
queue=queue_name,
routing_key=severity)