django-rest-framework-docs
django-rest-framework-docs copied to clipboard
Document Web APIs made with Django Rest Framework
Currently DRF-docs (and other toolkits I could find) only work with APIView or subclasses. I have an application based on the Django REST Framework, but I am also using django-oauth-toolkit...
In developing with DRF Docs, I gave a couple of internal business users the Live API links in order to do manual testing. In their testing POST, PUT, and PATCH...
In order tu support markdown, as @slav0nic suggest on https://github.com/manosim/django-rest-framework-docs/pull/117: - Using DRF `get_view_description` function by default getting docstrings. - Add new param `VIEW_DESCRIPTION_FUNCTION` to customize this behavior.
by name_parent is not good. I write this url(r'^api/v1/', include('game.urls', namespace='game')), url(r'^api/v1/', include('myuser.urls', namespace='account')), and the group name is 'api/v1'
Hi guys, great work on the docs so far. I have try it on a toy project and is fantastic. However one of the feature i am looking for is...
djangorestframework==3.4.0, GenericViewSet. Inherited ViewSet doesn't contents serializer_class property, but [method](https://github.com/ekonstantinidis/django-rest-framework-docs/blob/master/rest_framework_docs/api_endpoint.py#L82) gets serializer_class attribute from parent. I think, that get_serializer_class must have more priotity
Hi, As you can see the title of my API category is "None" and I understand it is because I have a blank regex. But there cases that it will...
I have the docstrings in reStructuredText format in my project. So I went ahead and added support for rst to DRFDocs. Thought this might be helpful to the community, and...
my drf project layout: project: - urls.py api: - urls.py In project/urls.py I defined the url routing like: urlpatterns = [url(r'^api/', include('api.urls', namespace='api')), url(r'^api-token-auth/', views.obtain_token),] on the drf web page,...