国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

使用Python的Bottle框架寫一個簡單的服務接口的示例

2019-11-25 17:04:45
字體:
來源:轉載
供稿:網友

是不是有這么一個場景,對外提供一堆數據或者是要返回給用戶一個結果。但是不想把內部的一些數據和邏輯暴露給對方。。。簡單點來說,就是想以服務的方式對外提供一個接口。對于這種有很多處理方式,RPC,搭建一個web服務啥的。。。。但是這些畢竟都太重量級了,操作起來很麻煩。我這里給出的一種非常easy的方式來處理。使用bottle解決問題。

需求: 檢查一個zookeeper服務中的某些節點是否存在,如果存在返回OK,不存在則給出不存的節點信息。要求返回的信息是和pyunit的結果信息一致。

實現環境:

    1.  python 2.7  以及自帶的pyunit
    2.  bottle          作為一個python的簡易服務器     

pip  install    bottle

    3.  kazoo         一個python的zookeeper客戶端  

pip install kazoo

1. 創建一個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服務,將結果輸出

  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服務,提供外部訪問ip

現在可以直接通過  http://localhost:8888/alisa   進行訪問。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 高阳县| 泉州市| 老河口市| 什邡市| 拉孜县| 留坝县| 威远县| 焦作市| 阳朔县| 南岸区| 班玛县| 汾西县| 全南县| 扎赉特旗| 博兴县| 芦溪县| 宜兰市| 怀化市| 邯郸市| 鄂托克前旗| 阳高县| 泰宁县| 循化| 合山市| 石家庄市| 渝北区| 淮滨县| 蕉岭县| 吴堡县| 瑞金市| 宁乡县| 宜川县| 昌吉市| 湟中县| 马山县| 忻州市| 德江县| 涞源县| 黄骅市| 黄浦区| 黄冈市|