首页 > 代码库 > Python(pika)-RabbitMQ
Python(pika)-RabbitMQ
send.py
#!/usr/bin/env python #coding=utf8 import pika credentials = pika.PlainCredentials('admin', 'admin') connection = pika.BlockingConnection(parameters = pika.ConnectionParameters('<ip>', <port>, '/', credentials)) channel = connection.channel() channel.queue_declare(queue='hello') channel.basic_publish(exchange='', routing_key='hello', body='Hello World!') print " [x] Sent 'Hello World!'" connection.close()
receive.py
#!/usr/bin/env python #coding=utf8 import pika credentials = pika.PlainCredentials('admin', 'admin') connection = pika.BlockingConnection(parameters = pika.ConnectionParameters('<ip>', <port>, '/', 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()
Python(pika)-RabbitMQ
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。