Skip to content

Instantly share code, notes, and snippets.

View ryanbraganza's full-sized avatar
🔂

Ryan Braganza ryanbraganza

🔂
View GitHub Profile
@ryanbraganza
ryanbraganza / url_structure.py
Created November 8, 2011 02:34
django management command to print the URL structure of a django app
"""
Print entire url structure of a django app
"""
from django.core.management.base import BaseCommand
import sys
from django.core.urlresolvers import RegexURLResolver
from django.conf import settings