Home > OS >  How to use Swagger with Python based Django REST APIs?
How to use Swagger with Python based Django REST APIs?

Time:12-20

I am trying to make a CRUD API with using Django. How I implemented swagger docs with Django.

CodePudding user response:

The most supported and modern tool for this is drf-spectacular. Docs, installation guide.

CodePudding user response:

Follow this link to generate and implement the builtin and custom swagger . https://drf-yasg.readthedocs.io/en/stable/readme.html

  • Related