Skip to main content

Django-urldecorators is a reusable Django application which allows apply view decorators and middleware components depending on requested url.

Project description

This project is archived. It is no longer updated or maintained.

Django-urldecorators is a reusable Django application which allows apply view decorators and middleware components based on a requested URL.

This library is compatible with Django 1.4 and later. If you need to use older Django versions (which receive no security updates or bugfixes) you can install 0.4 version of django-urldecorators.

Installation and usage

  1. Run python setup.py install or add the urldecorators module to your PYTHONPATH (or use pip or easy_install).

  2. In urls.py file replace from django.conf.urls import url, include by from urldecorators import url, include

  3. Pass a list of decorators and/or middleware_classes as an argument to the url function.

Example urls.py file:

from urldecorators import url, include

urlpatterns = [
    url(r'^private/$', include('example.private.urls'),
        decorators=['django.contrib.auth.decorators.login_required']),
    url(r'^articles/$', include('example.articles.urls'),
        middleware_classes=['django.middleware.cache.CacheMiddleware']),
]

For the example configuration and usage see the example project included in the repository. It can be run using django-admin.py utility from the repository root:

$ django-admin.py syncdb --settings=example.settings --pythonpath="$PWD"
$ django-admin.py createsuperuser --settings=example.settings --pythonpath="$PWD"
$ django-admin.py runserver --settings=example.settings --pythonpath="$PWD"

Requirements

Django-urldecorators is tested with Django versions from 1.4 to 1.11 but it does not support patterns function from ancient Django versions.

Both Python 2 and Python 3 are supported.

Testing

Application tests can run using tox:

$ tox

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-urldecorators-0.7.tar.gz (10.2 kB view details)

Uploaded Source

File details

Details for the file django-urldecorators-0.7.tar.gz.

File metadata

  • Download URL: django-urldecorators-0.7.tar.gz
  • Upload date:
  • Size: 10.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.0 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.9.1

File hashes

Hashes for django-urldecorators-0.7.tar.gz
Algorithm Hash digest
SHA256 5a0f15ea2cf331c5d02065ceb22bf4df896ad50eab9c7efc8512dd25999dd28b
MD5 1efde24dcb70d4c17c038d6c84e100f6
BLAKE2b-256 96daaf037bca0a4eaeed0a132d342227744cc2c78c3c0959e89b286dd6049e8b

See more details on using hashes here.

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