python django自动生成接口文档

1.安装coreapi包

pip install coreapi

2.配置接口的路径(在同名文件夹的url路径下配置)

from rest_framework.documentation import include_docs_urls
urlpatterns = [
    url(r'^docs/',include_docs_urls(title='接口文档')),
]

3.在网页输入URL网址
python django自动生成接口文档_第1张图片

你可能感兴趣的:(django)