Python Tornado之连接Eureka注册中心

问题背景

项目使用SpringCloud微服务这套,注册中心为Eureka,网关刚升级为Gateway。而现在血压模块需要用Python+串口+ws来处理。

解决方案


py-eureka-client

首先我们要引入一个py-eureka-client客户端,这个库很方便就可以连接Eureka注册中心。
安装只需要

pip install py_eureka_client

英文说明文档可以到pypi这个地址看
https://pypi.org/project/py-eureka-client/

代码

另存为XyWeb.py,然后py XyWeb.py运行即可。

# coding:utf-8
import tornado.httpserver
import tornado.ioloop
import tornado.options
import tornado.web
import py_eureka_client.eureka_client as eureka_client
from tornado.options import define, options
define("port", default=3333, help="run on the given port", type=int)

class IndexHandler(tornado.web.RequestHandler):
    def get(self):
        username = self.get_argument('username', 'Hello')
        self.write(username + ', Administrator User!')

if __name__ == "__main__":
	#blog.csdn.net/moshowgame
    tornado.options.parse_command_line()
    #注册eureka服务
    eureka_client.init_registry_client(eureka_server="http://eureka1x:9091/eureka/,http://eureka2x:9092/eureka/",
                            app_name="python-tornado-xyweb",
                            instance_port=3333)
    #获取eureka服务(有报错,先别用)
    #res = eureka_client.do_service("GRATEWAY", "/service/context/path")
    #print("result of other service" + res)
    app = tornado.web.Application(handlers=[(r"/", IndexHandler)])
    http_server = tornado.httpserver.HTTPServer(app)
    http_server.listen(options.port)
    tornado.ioloop.IOLoop.instance().start()

运行结果

在这里插入图片描述

  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 5
    评论
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值