What tools are available to auto-produce documentation for a REST API written in Flask? [closed] What tools are available to auto-produce documentation for a REST API written in Flask? [closed] flask flask

What tools are available to auto-produce documentation for a REST API written in Flask? [closed]


I would recommend you Sphinx, you add your documentation as __doc__ and the autodoc module of Sphinx will generate the docs for you (docs.python.org also uses Sphinx). The markup is reStructuredText, similiar to Markdown (if you prefer Markdown, you can use pdoc).

e.g.:

@app.route('/download/<int:id>')def download_id(id):    '''This downloads a certain image specified by *id*'''    return ...


I really like Swagger because it allows to generate an API documentation by just adding a few decorators and comments into your code. There is a Flask Swagger available.

from flask import Flaskfrom flask.ext.restful import  Apifrom flask_restful_swagger import swaggerapp = Flask(__name__)api = swagger.docs(Api(app), apiVersion='1', api_spec_url="/api/v1/spec")class Unicorn(Resource):"Describing unicorns"@swagger.operation(    notes='some really good notes')def get(self, todo_id):...

Then you can see your methods and notes in an html interface just by visiting /api/v1/spec (it serves needed static automatically). You can also just get all your API description in JSON and parse it otherwise.


There is a Flask extension: flask-autodoc for auto documentation specially parsing endpoint route rule. You can add doc decorator to specify which APIs you want to doc:

@app.route('/doc')@auto.doc()def documentation():    '''    return API documentation page    '''    return auto.html()@app.route('/')@auto.doc()def welcome():    '''    Welcome API    '''    commit_hash = subprocess.check_output(["git", "rev-parse", "HEAD"])    commit_msg = subprocess.check_output(["git", "log", "-1", "--format=%s"])    date_time = subprocess.check_output(["git", "log", "-1", "--format=%cd"])    return "Welcome to VM Service Server. <br/>" \           "The last commit: %s<br/>Date: %s, <br>Hash: %s" % \           (commit_msg, date_time, commit_hash), 200

The simple html documentation page is like this:

enter image description here