使用Python的Bottle框架寫一個簡單的服務(wù)接口的示例
是不是有這么一個場景,對外提供一堆數(shù)據(jù)或者是要返回給用戶一個結(jié)果。但是不想把內(nèi)部的一些數(shù)據(jù)和邏輯暴露給對方。。。簡單點來說,就是想以服務(wù)的方式對外提供一個接口。對于這種有很多處理方式,RPC,搭建一個web服務(wù)啥的。。。。但是這些畢竟都太重量級了,操作起來很麻煩。我這里給出的一種非常easy的方式來處理。使用bottle解決問題。
需求: 檢查一個zookeeper服務(wù)中的某些節(jié)點是否存在,如果存在返回OK,不存在則給出不存的節(jié)點信息。要求返回的信息是和pyunit的結(jié)果信息一致。
實現(xiàn)環(huán)境:
1. python 2.7 以及自帶的pyunit
2. bottle 作為一個python的簡易服務(wù)器
pip install bottle
3. kazoo 一個python的zookeeper客戶端
pip install kazoo
1. 創(chuàng)建一個python的測試類 zk_check.py
-*- coding: utf-8 -*-
from kazoo.client import KazooClient
import unittest
class zktest(unittest.TestCase):
def runTest(self):
zknamespace = “/app/zktest_performance_1”
zkhosts = “127.0.0.1:2181,127.0.0.1:2182,127.0.0.1:2183”
ZKTEST_DRIVERS = [“ip1”, “ip2”]
ZKTEST_NODES = [“ip3”, “ip4”, “ip5”, “ip6”]
driverChildren = []
nodeChildren = []
badDrivers = []
badNodes = []
# checking
zk = KazooClient(hosts=zkhosts, read_only=True)
zk.start()
driverFatherPath = zknamespace + “/status/drivers”
nodeFatherPath = zknamespace + “/status/nodes”
if zk.exists(driverFatherPath):
driverChildren = zk.get_children(driverFatherPath)
if len(driverChildren) >
for driver in zktest_DRIVERS:
if driver not in driverChildren:
badDrivers.append(driver)
if zk.exists(nodeFatherPath):
nodeChildren = zk.get_children(nodeFatherPath)
if len(nodeChildren) >
for node in zktest_NODES:
if node not in nodeChildren:
badNodes.append(node)
zk.stop()
if (len(badNodes)==0) and (len(badDrivers)==0):
self.assertEquals(1,1,”pass”)
else:
if len(badDrivers) > 0:
self.assertEquals(1,2,'len : %d , error : %s' % (len(badDrivers),badDrivers))
if len(badNodes) > 0:
self.assertEquals(1,2,'len : %d , error : %s' % (len(badNodes),badNodes))
if __name__ == ‘__main__':
unittest.main()
2. 寫一個bottle服務(wù),將結(jié)果輸出
import commands
from bottle import route, run, template
@route(‘/alisa')
def index():
command = “python /Users/metaboy/script/zk_check.py”
#output = os.popen(command)
return template(‘<b>{{text}}</b>', text=commands.getoutput(command))
run(host='localhost', port=8888)
3. 后臺啟動bottle服務(wù),提供外部訪問ip
現(xiàn)在可以直接通過 http://localhost:8888/alisa 進行訪問。
相關(guān)文章
tensorflow pb to tflite 精度下降詳解
這篇文章主要介紹了tensorflow pb to tflite 精度下降詳解,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-05-05
Python測試WebService接口的實現(xiàn)示例
webService接口是走soap協(xié)議通過http傳輸,請求報文和返回報文都是xml格式的,本文主要介紹了Python測試WebService接口,具有一定的參考價值,感興趣的可以了解一下2024-03-03

