Skip to main content
django-url-namespaces
=====================

This is a somewhat-functional attempt to bring a more intuitive and less spaghettified syntax to Django's URLConf. It implements a declarative class-based syntax:


# urls.py (née 'URLConf')

from django.conf.urls import patterns
from url_namespaces import (Namespace, View, Redirect, \
ReverseRedirect, KeywordReverseRedirect)


class MyOtherURLs(Namespace):
""" URL namespaces are classes,
the URLs they contain are properties
of those classes. """

class Meta:
namespace = 'testapp:views'
app_name = 'testapp'
view_prefix = ''

rss = View(
r'^(?P<blog>[\w\-]+)/rss/?$',
'testapp.views.blogrss',
arg='yo', other_arg='dogg')

index = View(
r'^(?P<blog>[\w\-]+)/$',
'testapp.views.blogpage')

entry = View(
r'^(?P<blog>[\w\-]+)/(?P<entry>[\w\-]+)/?$',
'testapp.views.blogentrypage')


class MyURLs(Namespace):
""" Namespaces can be nested """

class Meta:
namespace = 'testapp'
app_name = 'testapp'
view_prefix = ''

pages = MyOtherURLs(r'^/pages/')

elsewhere = Redirect(
r'^/yodogg?',
"http://www.yodogg.com/")

root = ReverseRedirect(
r'^/?',
'testapp:index', blog="test")

entry_redirect = ReverseRedirect(
r'^blog/(?P<blog>[\w\-]+)/(?P<entry>[\w\-]+)/?$',
'testapp:entry', blog="%(blog)s", entry="%(entry)s")

entry_redirect_again = KeywordReverseRedirect(
r'^blog/(?P<blog>[\w\-]+)/(?P<entry>[\w\-]+)/?$',
'testapp:entry')

# These classes generate standard URL patterns
# and use url(), reverse(), RegexURLResolver;
# the project aims for compatibility with Django's
# URLConf structures.

urlpatterns = patterns('',
MyURLs(r'^/?').connect('testapp'))


Djano-URL-Namespaces implements a host of combinator objects, representing intuitive ideas e.g. `View`, `Redirect`, `Namespace` &c,
which can be modularly rearranged without the worries incumbent in getting ones' hands dirty with the rather fragile Django-native
URLConf syntax.

At the time of writing the project is in a state of somewhat indeterminate disrepair; namespaces don't nest quite right, there's a lot of sketchy code commented out and not enough docstrings, etc. If this is the sort of thing that floats your boat, know that I never turn away an entertaining pull-request, indeed!

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-url-namespaces-0.1.0.tar.gz (8.9 kB view details)

Uploaded Source

File details

Details for the file django-url-namespaces-0.1.0.tar.gz.

File metadata

File hashes

Hashes for django-url-namespaces-0.1.0.tar.gz
Algorithm Hash digest
SHA256 2b8e6dd2b00570466e597fad9badd2cf464ff7f9c498e2250832f500cf34308f
MD5 4fef15ca007f4107d3d2014f408a7131
BLAKE2b-256 33ffd170d5ae6ae4c42c99e9c3645b8d70090b15e7bfc3652b4793b445afbc13

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1.0 This release

1 file

Supported by

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