第五章:Python 之 RabbitMQ 基本示例
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第五章:Python 之 RabbitMQ 基本示例相关的知识,希望对你有一定的参考价值。
#send 端
import pika
credentials = pika.PlainCredentials(‘root‘, ‘Password1‘)
connection = pika.BlockingConnection(pika.ConnectionParameters(‘10.3.151.86‘,5672,‘/‘,credentials))
channel = connection.channel() #通过connection实例创建一个channel管道
channel.queue_declare(queue=‘hello‘) #在管道中创建一个队列
channel.basic_publish(exchange=‘‘,routing_key=‘hello‘,body=‘Hello Wfffforld!‘)
connection.close()
#receive 端
import pika
credentials = pika.PlainCredentials(‘root‘, ‘Password1‘)
connection = pika.BlockingConnection(pika.ConnectionParameters(‘10.3.151.86‘,5672,‘/‘,credentials))
channel = connection.channel()
channel.queue_declare(queue=‘hello‘)
def callback(ch,method,properties,body):
print(" [x] Received %r" % body)
channel.basic_consume(callback,queue=‘hello‘,no_ack=True)
print(‘ [*] Waiting for messages. To exit press CTRL+C‘)
channel.start_consuming()
本文出自 “学习旅程” 博客,请务必保留此出处http://mingkang.blog.51cto.com/9678221/1976076
以上是关于第五章:Python 之 RabbitMQ 基本示例的主要内容,如果未能解决你的问题,请参考以下文章