Python-RabbitMQ-topic(细致消息过滤的广播模式)

生产者:topic_publiser.py

import pika,sys

connection = pika.BlockingConnection(pika.ConnectionParameters("localhost"))

channel = connection.channel()

channel.exchange_declare(exchange='topic_logs',
                         exchange_type='topic')

routing_key = sys.argv[1] if len(sys.argv) > 1 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()

消费者:topic_consumer.py

import pika,sys

connection = pika.BlockingConnection(pika.ConnectionParameters("localhost"))

channel = connection.channel()

channel.exchange_declare(exchange='topic_logs',
                         exchange_type='topic')

result = channel.queue_declare(exclusive=True)
queue_name = result.method.queue#获取queue名字


bindding_keys = sys.argv[1:]
if not bindding_keys:
    sys.stderr.write("Usage: %s [info] [warning] [error]
" % sys.argv[0])
    sys.exit(1)

for bindding_key in bindding_keys:
    channel.queue_bind(exchange='topic_logs',
                       queue=queue_name,
                       routing_key=bindding_key)

print(' [*] Waiting for logs. To exit  press CTRL +C')

def callback(ch, method, properties,body):
    print("[x] %r:%r" % (method.routing_key, body))

channel.basic_consume(callback,
                      queue=queue_name,
                      no_ack=True)


channel.start_consuming()
原文地址:https://www.cnblogs.com/fuyuteng/p/9257450.html