Is there any lib/parser which can generate API blueprint documentation (apiary) from Django + Django Rest Framework code? Eg:
class UserView(...):
"""
## Users list [GET /users]
+ Request (application/json)
...
+ Response (application/json)
...
"""
class UserSerializer(...):
"""
## User (object)
+ id (string)
+ username (string)
+ ...
"""