Skip to main content

Raise any response object in Django

Project description

django-raise-response

django-raise-response is a simple plugin that provides the ability to return any response by raising it as you would do with django.http.Http404

Why would you need this? If you need to return a non-4XX/5XX response from a class-based view, for example a 303/301 response, this is the only decent way to do it.

Installing

pip install django-raise-response

Then add ‘raiseresponse.middlewares.RaiseResponse’ to your middlewares:

MIDDLEWARE = [
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'raiseresponse.middlewares.RaiseResponse'
]

Usage

Now you can use ResponseError to raise any response:

from raiseresponse import ResponseError

# somewhere in your view
response_you_want_to_rise = HttpResponse()
raise ResponseError(response_you_want_to_rise)

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-raise-response-0.1.0.tar.gz (2.0 kB view hashes)

Uploaded Source

Built Distribution

django_raise_response-0.1.0-py3-none-any.whl (4.0 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