统一消息平台




import pika
connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
channel = connection.channel()
channel.queue_declare(queue='notifications')
message = '这是一条来自统一消息平台的通知'
channel.basic_publish(exchange='', routing_key='notifications', body=message)
print(" [x] Sent message: %r" % message)
connection.close()
import pika
connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
channel = connection.channel()
channel.queue_declare(queue='notifications')
def callback(ch, method, properties, body):
print(" [x] Received %r" % body)
channel.basic_consume(callback, queue='notifications', no_ack=True)
print(' [*] Waiting for messages. To exit press CTRL+C')
channel.start_consuming()