Skip to main content

Django REST framework views using the pipeline pattern.

Project description

Django REST Framework Pipeline Views

Coverage Status Workflow Status PyPI Licence Last Commit Issues Downloads

Python Version Django Version

pip install drf-pipeline-views

Documentation: https://mrthearman.github.io/drf-pipeline-views/

Source Code: https://github.com/MrThearMan/drf-pipeline-views/


Inspired by a talk on The Clean Architecture in Python by Brandon Rhodes, drf-pipeline-views aims to simplify writing testable API endpoints with [Django REST framework][drf] using the Pipeline Design Pattern.

The main idea behind the pipeline pattern is to process data in steps. Input from the previous step is passed to the next, resulting in a collection of "data-in, data-out" -functions. These functions can be easily unit tested, since none of the functions depend on the state of the objects in the other parts of the pipeline. Furthermore, IO can be separated into its own step, making the other parts of the logic simpler and faster to test by not having to mock or do any other special setup around the IO. This also means that the IO block, or in fact any other part of the application, can be replaced as long as the data flowing through the pipeline remains the same.

from pipeline_views import BasePipelineView

from .my_serializers import InputSerializer, OutputSerializer
from .my_validators import validator
from .my_services import io_func, logging_func, integration_func


class SomeView(BasePipelineView):
    pipelines = {
        "GET": [
            InputSerializer,
            validator,
            io_func,
            integration_func,
            logging_func,
            OutputSerializer,
        ],
    }

Have a look at the quickstart section in the documentation on basic usage.

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

drf_pipeline_views-0.9.2.tar.gz (11.2 kB view details)

Uploaded Source

Built Distribution

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

drf_pipeline_views-0.9.2-py3-none-any.whl (11.3 kB view details)

Uploaded Python 3

File details

Details for the file drf_pipeline_views-0.9.2.tar.gz.

File metadata

  • Download URL: drf_pipeline_views-0.9.2.tar.gz
  • Upload date:
  • Size: 11.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.0.0 CPython/3.13.2 Linux/6.8.0-1021-azure

File hashes

Hashes for drf_pipeline_views-0.9.2.tar.gz
Algorithm Hash digest
SHA256 ef94a334ae24ec05e5118fd6f5380a8b15bba58bd08bb45ec1d56543e078c17e
MD5 dc3f42e61efb97c4262141ea4a63c171
BLAKE2b-256 ad8ea48cd76bff5e9f71dba10cdae999fb18e91a60743578365dfb65e763aca4

See more details on using hashes here.

File details

Details for the file drf_pipeline_views-0.9.2-py3-none-any.whl.

File metadata

  • Download URL: drf_pipeline_views-0.9.2-py3-none-any.whl
  • Upload date:
  • Size: 11.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.0.0 CPython/3.13.2 Linux/6.8.0-1021-azure

File hashes

Hashes for drf_pipeline_views-0.9.2-py3-none-any.whl
Algorithm Hash digest
SHA256 438f68a43b9935385c1a25a61fcf39fc444f0a35e4ba6c55b0c503c631d8b2e6
MD5 949e3ab95c040eb2fd0db453f68cad95
BLAKE2b-256 42bbb938d60e4ed5bd99b7c91c92d01a6dbfeaebeda6621955b1e43a73d9764a

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