使用自定义装饰器/属性记录Python Bottle API

时间:2015-01-08 22:15:14

标签: python documentation asp.net-web-api bottle

我正在开发一个将由各种客户端使用的API(使用Python Bottle框架)。在这样做的过程中,我试图一举两得。我想要做的是创建一些类型的装饰器/属性,我可以在其中描述API的每个公共路径。然后,我有一个循环遍历所有其他路由的路由,并收集此信息(描述,输入,输出...)。此信息作为JSON数组返回 - 以用户友好的html格式呈现。

收集路线信息很简单:

@route('/api-map',method=['GET'])
def api_map():
    api_methods = []
    for route in app.routes:
        if route.rule != "/api-map":
            ##TODO: get custom attribute from routes function with description, inputs, outputs...
            api_methods.append({"route":route.rule,"desc":"?"})

    response.content_type = 'application/json'
    return {"apiMap":api_methods}

但我坚持如何实现文档。下面是概念上我想要实现的目标,其中'svmdoc'是我放置此信息的属性:

@route('/token',method=['GET'])
@svmdoc(desc="Generates Token",input="username and password")
def getToken():
    #TODO token magic

有关如何实施此方法的任何建议?这样的事情已经存在,我不知道吗?

1 个答案:

答案 0 :(得分:2)

我会使用普通的文档字符串并创建一个模板来以可读的方式呈现您的api文档

<强> bottle0_template.tpl

<table>
<tr style="background-color:#CCCFDF"><th colspan="2">API Documentation</th></tr>
<tr style="background-color:#CCCFDF"><th>ENDPOINT</th><th>DESC</th></tr>
 % for color,resource in zip(colors,routes) :
   % docx = resource.callback.__doc__.replace("\n","<br/>")
   <tr style="background-color:{{ color }}"><td>{{ resource.rule }}</td><td> {{! docx }} </td></tr>
 % end
 </table>

然后将您的文件更改为

<强> bottle0.py

from bottle import route, run,app,template
from itertools import cycle
docs_exclude = "/api-doc","/api-map"

@route('/api-doc',method=['GET'])
def api_doc():
    colors = cycle('#FFFFFF #CCCFDF'.split())
    routes = filter(lambda x:x.rule not in docs_exclude,app[0].routes)
    return template("bottle0_template",colors=colors,routes=routes)


@route('/token')
def token():
    '''
    grant api token

    params:
      username: string,username of user
      password: string, password of user
    '''
    return "ASD!@#!#!@#"

@route('/userinfo')
def userinfo():
    '''
    grant api token

    params:
      - username: string,username of user to retrieve data for
      - code: string, api access token
    '''
    return json.dumps({"name":"bob"})

#print app[0].routes[1].callback.__doc__#api-doc
run(host='localhost', port=8080, debug=True)

然后转到http://localhost:8080/api-doc