python 怎样从rabbitmq订阅消息

 我来答
若以下回答无法解决问题,邀请你更新回答
就烦条0o
2016-08-30 · 知道合伙人软件行家
就烦条0o
知道合伙人软件行家
采纳数:33315 获赞数:46493
从事多年系统运维,喜欢编写各种小程序和脚本。

向TA提问 私信TA
展开全部

#coding=utf-8  

  

import pika,sys  

from pika import spec  

  

#在"/"虚拟主机vhost上通过用户guest建立channel通道  

user_name = 'guest'  

user_passwd = 'guest'  

target_host = 'localhost'  

vhost = '/'  

cred = pika.PlainCredentials(user_name,user_passwd)  

conn_params = pika.ConnectionParameters(target_host,  

                                        virtual_host = vhost,  

                                        credentials = cred)  

conn_broker = pika.BlockingConnection(conn_params)  

channel = conn_broker.channel()  

  

#定义消息发布后publisher接受到的确认信息处理函数  

def confirm_handler(frame):  

    if type(frame.method) == spec.Confirm.SelectOk:  

        """生产者创建的channel处于‘publisher comfirms’模式"""  

        print 'Channel in "confirm" mode!'  

    elif type(frame.method) == spec.Basic.Nack:  

        """生产者接受到消息发送失败并且消息丢失的消息"""  

        print 'Message lost!'  

    elif type(frame.method) == spec.Basic.ack:  

        if frame.method.delivery_tag in msg_ids:  

            """生产者接受到成功发布的消息"""  

            print 'Confirm received!'  

            msg_ids.remove(frame.method.delivery_tag)  

  

#将生产者创建的channel处于"publisher confirms"模式  

channel.confirm_delivery(callback = confirm_handler)  

  

#创建一个direct类型的、持久化的、没有consumer时队列是否自动删除的exchage交换机  

channel.exchange_declare(exchange = 'hello-exch',  

                              type = 'direct',  

                              passive = False,  

                              durable = True,  

                              auto_delete = False)  

#使用接收到的信息创建消息  

#使用接收到的信息创建消息  

msg = sys.argv[1]  

msg_props = pika.BasicProperties()  

msg_props.content_type = 'text/plain'  

#持久化消息  

msg_props.delivery_mode = 2  

msg_ids = []  

  

print 'ready to publish...'  

#发布消息  

channel.basic_publish(body = msg,  

                      exchange = 'hello-exch',  

                      properties = msg_props,  

                      routing_key = 'hala')  

print 'published!'  

msg_ids.append(len(msg_ids) + 1)  

print len(msg_ids)  

channel.close()  

conn_broker.close() 


本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式