码迷,mamicode.com
首页 > 编程语言 > 详细

python测试rabbitmq的消息收发

时间:2017-08-05 14:07:39      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:python   rabbitmq   

send.py

#!/usr/bin/env python   
# -*- coding: UTF-8 -*- 
import pika  
import random  
        
credentials = pika.PlainCredentials(‘root‘, ‘123456‘)  
#这里可以连接远程IP,请记得打开远程端口    
parameters = pika.ConnectionParameters(‘139.x.x.x‘,5672,‘/‘,credentials)    
connection = pika.BlockingConnection(parameters)    
channel = connection.channel()    
    
#channel.queue_declare(queue=‘hello‘)    
number = random.randint(1,1000)  
body = ‘hello world:%s‘ %number  
channel.basic_publish(exchange=‘‘,    
                      routing_key=‘hello‘,    
                      body=body)    
print " [x] Sent %s" %body    
connection.close()


receice.py

#!/usr/bin/env python   
# -*- coding: UTF-8 -*- 
import pika  
import random  
        
credentials = pika.PlainCredentials(‘root‘, ‘123456‘)  
#这里可以连接远程IP,请记得打开远程端口    
parameters = pika.ConnectionParameters(‘139.x.x.x‘,5672,‘/‘,credentials)    
connection = pika.BlockingConnection(parameters)    
channel = connection.channel()    
    
#channel.queue_declare(queue=‘hello‘)    
number = random.randint(1,1000)  
body = ‘hello world:%s‘ %number  
channel.basic_publish(exchange=‘‘,    
                      routing_key=‘hello‘,    
                      body=body)    
print " [x] Sent %s" %body    
connection.close()


本文出自 “禅剑一如” 博客,请务必保留此出处http://yanconggod.blog.51cto.com/1351649/1953785

python测试rabbitmq的消息收发

标签:python   rabbitmq   

原文地址:http://yanconggod.blog.51cto.com/1351649/1953785

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!