1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | def easy(url_str):
import re
patt = re.compile(r':\w+/?')
matches = patt.findall(url_str)
for match in matches:
var = match[1:-1]
var_re = r'(?P<%s>.*)/' % var
url_str = url_str.replace(match, var_re)
url_str += '$'
return url_str
# usage:
# urlpatterns = patterns('',
# url(easy('calendar/:year/:month/'), 'apps.events.views.calendar'),
# )
# output:
# urlpatterns = patterns('',
# url(r'^calendar/(?P<year>.*)/(?P<month>.*)$', 'apps.events.views.calendar'),
# )
# so much win !
|
More like this
- Login Required Middleware with Next Parameter by bernardoporto 6 months ago
- Regular Expression Dictionary by skitch 5 years, 10 months ago
- Login Required Middleware by onecreativenerd 4 years, 6 months ago
- Url filter middleware by limodou 6 years, 2 months ago
- urlize HTML by maguspk 2 years, 11 months ago
Comments