显示django中的所有url设置,显示djangourl设置,下面的脚本显示djang


下面的脚本显示django中所有url设置:

import urlsdef 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)

评论关闭