如何打印 Django 中使用的所有路由?

How to print all the Routes used in Django?

我想在使用 Django 构建的应用程序中显示所有路由,类似于 Laravel 使用命令所做的事情:

php artisan route:list

有没有办法获取所有的路由?

django-extensions 有命令 show_urls,安装后你可以做:

python manage.py show_urls