使用Python的Bottle框架寫一個(gè)簡單的服務(wù)接口的示例
是不是有這么一個(gè)場景,對(duì)外提供一堆數(shù)據(jù)或者是要返回給用戶一個(gè)結(jié)果。但是不想把內(nèi)部的一些數(shù)據(jù)和邏輯暴露給對(duì)方。。。簡單點(diǎn)來說,就是想以服務(wù)的方式對(duì)外提供一個(gè)接口。對(duì)于這種有很多處理方式,RPC,搭建一個(gè)web服務(wù)啥的。。。。但是這些畢竟都太重量級(jí)了,操作起來很麻煩。我這里給出的一種非常easy的方式來處理。使用bottle解決問題。
需求: 檢查一個(gè)zookeeper服務(wù)中的某些節(jié)點(diǎn)是否存在,如果存在返回OK,不存在則給出不存的節(jié)點(diǎn)信息。要求返回的信息是和pyunit的結(jié)果信息一致。
實(shí)現(xiàn)環(huán)境:
1. python 2.7 以及自帶的pyunit
2. bottle 作為一個(gè)python的簡易服務(wù)器
pip install bottle
3. kazoo 一個(gè)python的zookeeper客戶端
pip install kazoo
1. 創(chuàng)建一個(gè)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. 寫一個(gè)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. 后臺(tái)啟動(dòng)bottle服務(wù),提供外部訪問ip
現(xiàn)在可以直接通過 http://localhost:8888/alisa 進(jìn)行訪問。
相關(guān)文章
Python運(yùn)用于數(shù)據(jù)分析的簡單教程
這篇文章主要介紹了Python運(yùn)用于數(shù)據(jù)分析的簡單教程,主要介紹了如何運(yùn)用Python來進(jìn)行數(shù)據(jù)導(dǎo)入、變化、統(tǒng)計(jì)和假設(shè)檢驗(yàn)等基本的數(shù)據(jù)分析,需要的朋友可以參考下2015-03-03
刪除pycharm鼠標(biāo)右鍵快捷鍵打開項(xiàng)目的操作
這篇文章主要介紹了刪除pycharm鼠標(biāo)右鍵快捷鍵打開項(xiàng)目的操作,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧2021-01-01
tensorflow pb to tflite 精度下降詳解
這篇文章主要介紹了tensorflow pb to tflite 精度下降詳解,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧2020-05-05
python查找目錄下指定擴(kuò)展名的文件實(shí)例
這篇文章主要介紹了python查找目錄下指定擴(kuò)展名的文件,實(shí)例分析了Python文件查詢的技巧,非常具有實(shí)用價(jià)值,需要的朋友可以參考下2015-04-04
win7安裝python生成隨機(jī)數(shù)代碼分享
python3生成隨機(jī)數(shù)代碼分享,在win7上測試通過2013-12-12
Python測試WebService接口的實(shí)現(xiàn)示例
webService接口是走soap協(xié)議通過http傳輸,請(qǐng)求報(bào)文和返回報(bào)文都是xml格式的,本文主要介紹了Python測試WebService接口,具有一定的參考價(jià)值,感興趣的可以了解一下2024-03-03

