Skip to main content

Redesign of the browsable api of Django REST Framework

Project description

rest-framework-redesign

Redesign of the browsable api of Django REST Framework

Get started

To get started with rest-framework-redesign:

Install the package:

pip install rest-framework-redesign

Add rest_framework_redesign to INSTALLED_APPS setting, make sure that it's before rest_framework

# settings.py

INSTALLED_APPS = [
    ...
    'rest_framework_redesign',
    'rest_framework',
    ...
]

Include rest_framework.urls in your project URLConf

# urls.py

...
from django.urls import path, include

urlpatterns = [
    ...
    path('auth/', include('rest_framework.urls')),
    ...
]

Run the server

python manage.py runserver

I hope you that you find this useful.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rest_framework_redesign-0.1.7.tar.gz (11.5 kB view hashes)

Uploaded Source

Built Distribution

rest_framework_redesign-0.1.7-py3-none-any.whl (20.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page