如何使用pika发布消息时添加标题键:值对

时间:2016-06-07 14:31:24

标签: python rabbitmq amqp pika

我正在编写一个自动测试来测试消费者。到目前为止,我不需要在发布消息时包含标题,但现在我做了。它似乎缺乏文档。

这是我的出版商:

class RMQProducer(object):

    def __init__(self, host, exchange, routing_key):
        self.host = host
        self.exchange = exchange
        self.routing_key = routing_key

    def publish_message(self, message):
        connection = pika.BlockingConnection(pika.ConnectionParameters(self.host))
        channel = connection.channel()
        message = json.dumps(message)
        channel.basic_publish(exchange=self.exchange,
                              routing_key=self.routing_key,
                              body=message)

我想做smtn:

channel.basic_publish(exchange=self.exchange,
                      routing_key=self.routing_key,
                      body=message,
                      headers={"key": "value"})

为此邮件添加标题的正确方法是什么?

3 个答案:

答案 0 :(得分:11)

您可以使用pika.BasicProperties添加标题。

channel.basic_publish(exchange=self.exchange,
                      routing_key=self.routing_key,
                      properties=pika.BasicProperties(
                          headers={'key': 'value'} # Add a key/value header
                      ),
                      body=message)

pika的官方文档确实没有完全涵盖这种情况,但文档确实列出了规范。如果您要继续使用鼠兔,我强烈建议您将this页面添加为书签。

答案 1 :(得分:1)

不能说我得到了这个,但我这样做:

props = pika.BasicProperties({'headers': {'key': 'value'}})
channel.basic_publish(exchange=self.exchange,
                          routing_key=self.routing_key,
                          body=message, properties = props)

答案 2 :(得分:0)

官方文件如下:

hdrs = {u'': u' ',
    u'': u'',
    u'': u''}
properties = pika.BasicProperties(app_id='example-publisher',
    content_type='application/json',  
    headers=hdrs)