About 51 results
Open links in new tab
  1. Home - Django REST framework

    Django REST framework is a powerful and flexible toolkit for building Web APIs. Some reasons you might want to use REST framework: The Web browsable API is a huge usability win for …

  2. Quickstart - Django REST framework

    We're going to create a simple API to allow admin users to view and edit the users and groups in the system. Project setup. Create a new Django project named tutorial, then start a new app …

  3. Tutorials and Resources - Django REST framework

    How to Make a Full Fledged REST API with Django OAuth Toolkit; Django REST API - So Easy You Can Learn It in 25 Minutes; Tom Christie about Django Rest Framework at Django: Under …

  4. Requests - Django REST framework

    REST framework provides flexible, per-request authentication, that gives you the ability to: Use different authentication policies for different parts of your API. Support the use of multiple …

  5. Views - Django REST framework

    In addition to the documentation here, the Classy Django REST Framework resource provides a browsable reference, with full methods and attributes, for each of Django REST Framework's …

  6. Documenting your API - Django REST framework

    The browsable API that REST framework provides makes it possible for your API to be entirely self describing. The documentation for each API endpoint can be provided simply by visiting …

  7. 1 - Serialization - Django REST framework

    This tutorial will cover creating a simple pastebin code highlighting Web API. Along the way it will introduce the various components that make up REST framework, and give you a …

  8. 2 - Requests and responses - Django REST framework

    REST framework introduces a Request object that extends the regular HttpRequest, and provides more flexible request parsing. The core functionality of the Request object is the request.data …

  9. Serializers - Django REST framework

    The django-rest-framework-serializer-extensions package provides a collection of tools to DRY up your serializers, by allowing fields to be defined on a per-view/request basis. Fields can be …

  10. Parsers - Django REST framework

    REST framework includes a number of built-in Parser classes, that allow you to accept requests with various media types. There is also support for defining your own custom parsers, which …

Refresh