Skip to content

Documenting Python REST API whining

18-Oct-13

A downside of Python dynamic nature is that REST API documentation won’t generate right out of your code, like Swagger does for Java. The best you can get is http://pythonhosted.org/sphinxcontrib-httpdomain/, for which you need to duplicate all of your REST service method signatures in ReStructured text, a format I’m not a fan of. One can […]