Skip to main content

Automatic Tastypie URL builder by way of import discovery.

Project description


Django Tasypie Resource Url Builder
===================================


Just something I felt should be automated.


in your toplevel urls.py :

{{{
from django.conf.urls import patterns, include

from piehunter import PieHunter

api_urls = PieHunter(api_name='v1',
dotted_path='api.resources',
enabled_attribute='EnabledResources')

urlpatterns = patterns('',
surl(r'^api/', include(api_urls)),
surl(r'^beta/', include('hunger.urls')),
)
}}}

Now in your applications you would have a directory structure like so :

{{{
/
__init__.py
urls.py
models.py
admin.py
templates/
static/
...

}}}

Throw your Tastypie resources into the api module to end up with something like :

{{{
/
__init__.py
urls.py
models.py
admin.py
templates/
static/
api/
resources.py
...
...
}}}

At the end of your `api.resources` module, include a list/set of resources you want to use :

{{{
EnabledResources = (TrooperResource,
DeathstarResource,
EvilGrinResource,
)
}}}

That's it, piehunter will now hunt for and include any resource found to be in a api.resources.EnabledResources

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-piehunter-0.0.1.tar.gz (2.5 kB view hashes)

Uploaded Source

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