django-rest-framework-docs
django-rest-framework-docs copied to clipboard
Document Web APIs made with Django Rest Framework
While trying to upgrade one of my projects to Django 2.0, I received the following error for drf-docs: ``` File ".../ve3.6/lib/python3.6/site-packages/rest_framework_docs/api_docs.py", line 3, in from django.core.urlresolvers import RegexURLResolver, RegexURLPattern ModuleNotFoundError:...
Hi I try use this solution to generate my api docs. I installed it with pip and add it name in INSTALLED_APPS, but, when i running the server, that error...
Hi guys, Recently i implemented drfdocs in my project, Everything is working good but i need to add token field in header for all request, Please help me out here.
There is a small typo in rest_framework_docs/api_endpoint.py. Should read `attributes` rather than `attibutes`.
This pull request aims to provide support for all supported versions of Django and Djano REST Framework.(affecting #175). The support now offered is summarised in the table below: | |...
with DRF 3.9.1 we have errors for custom permissions with following exception ```AttributeError: OperandHolder instance has no attribute '__name__'``` the `self.pattern.callback.cls.permission_classes` seems to return a mix of classes and instances...
I get the following stack trace trying to pip install or upgrate drfdocs, using Python 2.7, on both a mac running OS X 10.11.5 and a Ubuntu 14.04 machine. ```...
Not working for django=2.1.3 & djangorestframework==3.9.0 You need to change this: - **URLPattern** and **URLResolver** on [line:3](https://github.com/manosim/django-rest-framework-docs/blob/94571d05617d24816ba8fdc5e836d17645a88319/rest_framework_docs/api_docs.py#L3), [line:26](https://github.com/manosim/django-rest-framework-docs/blob/94571d05617d24816ba8fdc5e836d17645a88319/rest_framework_docs/api_docs.py#L26), [line:29](https://github.com/manosim/django-rest-framework-docs/blob/94571d05617d24816ba8fdc5e836d17645a88319/rest_framework_docs/api_docs.py#L29) in api_docs.py file. - **pattern.pattern.regex** on [line:27](https://github.com/manosim/django-rest-framework-docs/blob/94571d05617d24816ba8fdc5e836d17645a88319/rest_framework_docs/api_docs.py#L27) in api_docs.py file -...