【发布时间】:2018-03-08 17:33:01
【问题描述】:
是否有任何 lib/parser 可以从 Django + Django Rest Framework 代码生成 API 蓝图文档(apiary)?例如:
class UserView(...):
"""
## Users list [GET /users]
+ Request (application/json)
...
+ Response (application/json)
...
"""
class UserSerializer(...):
"""
## User (object)
+ id (string)
+ username (string)
+ ...
"""
【问题讨论】:
标签: django django-rest-framework apiblueprint apiary.io