Skip to main content

Throttling system for Django views.

Project description

Throttling system for Django views.

Basic Usage

Add to settings

INSTALLED_APPS = (
    ...
    'throttling',
)

and in your views

from throttling.decorators import throttle

@throttle(1000)
def view(request):
    return HttpResponse('success')

Features

  • limit to a maximum number of requests for each view or for a group of views
    • each anonymous user

    • each user (anonymous or authenticated)

    • each authenticated user with a certain user role

    • each authenticated user that bellongs to a group

  • limit to a shared maximum number of requests for each view or for a group of views
    • all anonymous users

    • all users (anonymous or authenticated)

    • all authenticated users that bellong to a group

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

throttling-1.2.0.tar.gz (4.1 kB view hashes)

Uploaded Source

Built Distribution

throttling-1.2.0-py2-none-any.whl (7.0 kB view hashes)

Uploaded Python 2

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