1 Star 0 Fork 0

笑着笑着就哭了/dailyuse-scripts

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
rabbbitmq_consumer.py 509 Bytes
一键复制 编辑 原始数据 按行查看 历史
笑着笑着就哭了 提交于 2020-02-29 20:26 . 保存脚本
# !/usr/bin/env python
import pika
credentials = pika.PlainCredentials('wusheng','wusheng')
connection = pika.BlockingConnection(pika.ConnectionParameters(
'192.168.10.50',5672,'/',credentials))
channel = connection.channel()
# 声明queue
channel.queue_declare(queue='balance')
def callback(ch, method, properties, body):
print("[x] Received %r" % body)
channel.basic_consume('balance', callback, auto_ack=True)
print(' [*] Waiting for messages. To exit press CTRL+C')
channel.start_consuming()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Shell
1
https://gitee.com/erheihei/dailyuse-scripts.git
git@gitee.com:erheihei/dailyuse-scripts.git
erheihei
dailyuse-scripts
dailyuse-scripts
master

搜索帮助