All Projects → manosim → Django Rest Framework Docs

manosim / Django Rest Framework Docs

Licence: bsd-2-clause
Document Web APIs made with Django Rest Framework

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Django Rest Framework Docs

Meethub
This is a Python/Django based event management system. A meetup clone.
Stars: ✭ 411 (-32.29%)
Mutual labels:  django, django-rest-framework
Onlinemooc
Vue前台 + Django3.1 + DjangoRestful Framework + Ant Design Pro V4后台 开发的在线教育网站及后台管理
Stars: ✭ 587 (-3.29%)
Mutual labels:  django, django-rest-framework
Django Rest Framework Passwordless
Passwordless Auth for Django REST Framework
Stars: ✭ 412 (-32.13%)
Mutual labels:  django, django-rest-framework
Django Api Domains
A pragmatic styleguide for Django API Projects
Stars: ✭ 365 (-39.87%)
Mutual labels:  django, django-rest-framework
Polemarch
Simple WEB gui for infrastructure management by ansible playbooks or modules. This is only mirror with bins in releases.
Stars: ✭ 530 (-12.69%)
Mutual labels:  django, django-rest-framework
Onlinejudge
open source online judge based on Vue, Django and Docker. | 青岛大学开源 Online Judge | QQ群 496710125 | [email protected]
Stars: ✭ 4,458 (+634.43%)
Mutual labels:  django, django-rest-framework
Drf Extra Fields
Extra Fields for Django Rest Framework
Stars: ✭ 445 (-26.69%)
Mutual labels:  django, django-rest-framework
Docker Django Nginx Uwsgi Postgres Tutorial
Docker + Django + Nginx + uWSGI + Postgres 基本教學 - 從無到有 ( Docker + Django + Nginx + uWSGI + Postgres Tutorial )
Stars: ✭ 334 (-44.98%)
Mutual labels:  django, django-rest-framework
Django React Blog
Simple blog built with Django and React/Redux, deployed with Docker, and served with nginx/uwsgi.
Stars: ✭ 528 (-13.01%)
Mutual labels:  django, django-rest-framework
Fcm Django
FCM Django: Send push notifications via django to websites, iOS & android mobile devices through FCM (Firebase Cloud Messaging)
Stars: ✭ 495 (-18.45%)
Mutual labels:  django, django-rest-framework
Channels Api
RESTful Websocket APIs with Django Rest Framework and Channels
Stars: ✭ 353 (-41.85%)
Mutual labels:  django, django-rest-framework
Osf.io
Facilitating Open Science
Stars: ✭ 565 (-6.92%)
Mutual labels:  django, django-rest-framework
Drf Flex Fields
Dynamically set fields and expand nested resources in Django REST Framework serializers.
Stars: ✭ 350 (-42.34%)
Mutual labels:  django, django-rest-framework
Django React Boilerplate
DIY Django + React Boilerplate for starting your SaaS
Stars: ✭ 385 (-36.57%)
Mutual labels:  django, django-rest-framework
Nsot
Network Source of Truth is an open source IPAM and network inventory database
Stars: ✭ 337 (-44.48%)
Mutual labels:  django, django-rest-framework
Django Rest Framework Api Guide
Django REST framework API 指南
Stars: ✭ 437 (-28.01%)
Mutual labels:  django, django-rest-framework
Djangorestframework Api Key
🔐 API key permissions for Django REST Framework
Stars: ✭ 290 (-52.22%)
Mutual labels:  web-api, django-rest-framework
Django Rest Framework Jwt
JSON Web Token Authentication support for Django REST Framework
Stars: ✭ 3,105 (+411.53%)
Mutual labels:  django, django-rest-framework
Dj Rest Auth
Authentication for Django Rest Framework
Stars: ✭ 491 (-19.11%)
Mutual labels:  django, django-rest-framework
Django Rest Framework Mongoengine
Mongoengine support for Django Rest Framework
Stars: ✭ 544 (-10.38%)
Mutual labels:  django, django-rest-framework

DRF Docs travis codecov pypi slack

Document Web APIs made with Django Rest Framework. View Demo

Contributors Wanted: Do you like this project? Using it? Let's make it better!

DRFdocs

Supports

  • Python (2.7, 3.3, 3.4, 3.5)
  • Django (1.8, 1.9)
  • Django Rest Framework (3+)

Documentation - Table of contents

Development & Demo Project

If you are looking to develop this package with one of your own django projects:

pyvenv env
env/bin/pip install -r requirements.txt
pip install -e ~/Projects/drf-docs/

If you want to use the demo app to work on this package: Included in this repo you can find the demo project(at /demo). It is a project with Django & Django Rest Framework that will allow you to work with this project. For more information on how you can set it up please check the README.md of the demo project.

For more information visit the docs.

Installation

Install using pip:

pip install drfdocs

Add 'rest_framework_docs' to your INSTALLED_APPS setting:

INSTALLED_APPS = (
    ...
    'rest_framework_docs',
)

Finally include the rest_framework_docs urls in your urls.py:

urlpatterns = [
    ...
    url(r'^docs/', include('rest_framework_docs.urls')),
]

Settings

You can find detailed information about the package's settings at the docs.

REST_FRAMEWORK_DOCS = {
    'HIDE_DOCS': True  # Default: False
}

Credits

First of all thanks to the Django core team and to all the contributors of Django REST Framework for their amazing work. Also I would like to thank Marc Gibbons for his django-rest-framework-docs project. Both projects share the same idea, it is just that Marc's is not maintained anymore and does not support DRF 3+ & Python 3.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].