views:

86

answers:

2

Hey everyone,

I was wondering if there's a function like Django's django.core.urlresolvers.reverse for Google's App Engine. I've been searching everywhere but haven't been able to find anything about it.

Thanks in advance

+1  A: 

This isn't really anything App Engine specific - if you're using App Engine Patch, you can use Django, including its URL resolvers. Alternately, you can use any other framework with a reverse resolver, or use one on its own.

Nick Johnson
A: 

After a hard search, I found confusing documentation for similar functionality in Google App Engine's default webapp.WSGIApplication class. It seems as though regular expressions can be passed to a Handler, but they're named and used by giving extra arguments to that handler's get function.

Cody Hess