Skip to main content

Publish your Django API docs with Scalar

Project description

Django Scalar

Django-Scalar provides an easy way to serve your API docs with Scalar.

Note: This project is still in its early stages. Pull requests are welcome.

Installation

The python package to install is django-scalar. You can install it with pip install django-scalar or uv add django-scalar based on your preferred python package manager.

Integrate in your Django app

At this stage, it is required that you have your OpenAPI schema published with DRF-Spectacular under the api/schema/ endpoint.

To integrate django scalar include django-scalar.views.scalar_viewer in your urls.py.

from django.urls import path
from django_scalar.views import scalar_viewer
from drf_spectacular.views import SpectacularAPIView

urlpatterns = [
    # ...existing URL patterns...
    path("api/schema/", SpectacularAPIView.as_view(), name="schema"),
    # Add this:
    path("api-docs/", scalar_viewer, name="scalar-viewer"),
]

Feel free to change api-docs/ to your liking. We've seen api/docs etc. in the wild.

Requirements:

There are two main requirements for this project:

This project implicitly depends on Django and Django-Rest-Framework.

Documentation example:

    #views.py
    @extend_schema(
        responses={200: UserSerializer},
        tags=["User"],
        description="Retrieve a list of all users",
        methods=["GET"],
        parameters=get_filter_parameters(UserFilter), ## this get_filter_parameters is using the django-filters base to create the necessary parameters automatically.
    )
    def list(self, request: Request, *args: Any, **kwargs: Any) -> Response:
        return super().list(request, *args, **kwargs)
  #filters/user.py

usage of get_filter_parameters

  • you need to create a basic or complex django-filter class and then use the script from get_filter_parameters the auto-parse the class to a valid OpenApiParameter
  #(app)/filters/users.py
  import django_filters
  from core.models.user import User


  class UserFilter(django_filters.FilterSet):
      # Filter by username (case-insensitive exact match)
      username = django_filters.CharFilter(lookup_expr="iexact")
  
      # Filter by email (case-insensitive exact match)
      email = django_filters.CharFilter(lookup_expr="iexact")
  
      # Filter by full name (case-insensitive partial match)
      full_name = django_filters.CharFilter(
          field_name="first_name", lookup_expr="icontains", label="Full Name"
      )
  
      # Filter by is_active (boolean filter)
      is_active = django_filters.BooleanFilter()
  
      # Filter by date joined (range filter for datetime)
      date_joined_start = django_filters.DateTimeFilter(
          field_name="date_joined", lookup_expr="gte", label="Joined After"
      )
      date_joined_end = django_filters.DateTimeFilter(
          field_name="date_joined", lookup_expr="lte", label="Joined Before"
      )
  
      # Filter by genres (many-to-many relationship)
      genres = django_filters.ModelMultipleChoiceFilter(
          queryset=User.objects.all(), field_name="genres__name", label="Genres"
      )
  
      # Filter by trusty (boolean filter)
      is_trusty = django_filters.BooleanFilter()
  
      # Filter by fee range (decimal filter)
      min_fee = django_filters.NumberFilter(
          field_name="fee", lookup_expr="gte", label="Min Fee"
      )
      max_fee = django_filters.NumberFilter(
          field_name="fee", lookup_expr="lte", label="Max Fee"
      )
      type = django_filters.ChoiceFilter(
          choices=[
              ("music", "Musico"),
              ("establishment", "Estabelecimento"),
          ],
      )
  
      class Meta:
          model = User
          fields = [
              "username",
              "email",
              "is_active",
              "is_trusty",
              "genres",
              "date_joined_start",
              "date_joined_end",
              "min_fee",
              "max_fee",
              "type",
          ]

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

django_scalar-0.1.7a0.tar.gz (22.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_scalar-0.1.7a0-py3-none-any.whl (6.8 kB view details)

Uploaded Python 3

File details

Details for the file django_scalar-0.1.7a0.tar.gz.

File metadata

  • Download URL: django_scalar-0.1.7a0.tar.gz
  • Upload date:
  • Size: 22.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.16

File hashes

Hashes for django_scalar-0.1.7a0.tar.gz
Algorithm Hash digest
SHA256 dbdfc57ca005a76f944ddd5dd2ebfe7cee1c76899f40fbe9d1036706c0268fda
MD5 dd589dfbe2ff275c9ddd8d798e1f8365
BLAKE2b-256 4b03803de50693a63f7513ef625188bfc90d0c08b0938f3a9f86c75148423d63

See more details on using hashes here.

File details

Details for the file django_scalar-0.1.7a0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_scalar-0.1.7a0-py3-none-any.whl
Algorithm Hash digest
SHA256 0f8c83b2706ce5f192659154c6ab93541f3d2a05e32c56d988e95bbf1198c940
MD5 1659c150930b2edeac34c3155ff27d74
BLAKE2b-256 1da5dc59e1c1bcbaa182fedc686ed43d180094e44b8a014888a6b615142a933e

See more details on using hashes here.

Supported by

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