Django: How do I create a generic url routing to views? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T17:37:59Z http://stackoverflow.com/feeds/question/168113 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/168113/django-how-do-i-create-a-generic-url-routing-to-views 2 Django: How do I create a generic url routing to views? swilliams 2008-10-03T17:58:05Z 2008-10-04T09:06:56Z <p>I have a pretty standard django app, and am wondering how to set the url routing so that I don't have to explicitly map each url to a view. </p> <p>For example, let's say that I have the following views: <code>Project, Links, Profile, Contact</code>. I'd rather not have my <code>urlpatterns</code> look like this:</p> <pre><code>(r'^Project/$', 'mysite.app.views.project'), (r'^Links/$', 'mysite.app.views.links'), (r'^Profile/$', 'mysite.app.views.profile'), (r'^Contact/$', 'mysite.app.views.contact'), </code></pre> <p>And so on. In <a href="http://www.pylonshq.com" rel="nofollow">Pylons</a>, it would be as simple as:</p> <pre><code>map.connect(':controller/:action/:id') </code></pre> <p>And it would automatically grab the right controller and function. Is there something similar in Django?</p> http://stackoverflow.com/questions/168113/django-how-do-i-create-a-generic-url-routing-to-views/168328#168328 2 Answer by Javier for Django: How do I create a generic url routing to views? Javier 2008-10-03T18:49:41Z 2008-10-03T19:29:09Z <pre><code>mods = ('Project','Links','Profile','Contact') urlpatterns = patterns('', *(('^%s/$'%n, 'mysite.app.views.%s'%n.lower()) for n in mods) ) </code></pre> http://stackoverflow.com/questions/168113/django-how-do-i-create-a-generic-url-routing-to-views/168601#168601 4 Answer by hop for Django: How do I create a generic url routing to views? hop 2008-10-03T19:51:36Z 2008-10-03T19:51:36Z <p>Unless you have a really <em>huge</em> number of views, writing them down explicitly is not too bad, from a style perspective.</p> <p>You can shorten your example, though, by using the prefix argument of the <code>patterns</code> function:</p> <pre><code>urlpatterns = patterns('mysite.app.views', (r'^Project/$', 'project'), (r'^Links/$', 'links'), (r'^Profile/$', 'profile'), (r'^Contact/$', 'contact'), ) </code></pre> http://stackoverflow.com/questions/168113/django-how-do-i-create-a-generic-url-routing-to-views/168656#168656 2 Answer by Mr Shark for Django: How do I create a generic url routing to views? Mr Shark 2008-10-03T20:06:35Z 2008-10-04T09:06:56Z <p>You might be able to use a special view function along these lines:</p> <pre><code>def router(request, function, module): m =__import__(module, globals(), locals(), [function.lower()]) try: return m.__dict__[function.lower()](request) except KeyError: raise Http404() </code></pre> <p>and then a urlconf like this:</p> <pre><code>(r'^(?P&lt;function&gt;.+)/$', router, {"module": 'mysite.app.views'}), </code></pre> <p>This code is untested but the general idea should work, even though you should remember:</p> <p><strong>Explicit is better than implicit.</strong></p>