Skip to content

Instantly share code, notes, and snippets.

@nicksnell
Created January 17, 2013 19:04
Show Gist options
  • Select an option

  • Save nicksnell/4558608 to your computer and use it in GitHub Desktop.

Select an option

Save nicksnell/4558608 to your computer and use it in GitHub Desktop.
Tool for django to show all the current URL patterns installed.
import urls
def show_urls(urllist, depth=0):
for entry in urllist:
print "-" * depth, entry.regex.pattern
if hasattr(entry, 'url_patterns'):
show_urls(entry.url_patterns, depth + 1)
show_urls(urls.urlpatterns)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment