Part 8: Adding third-party packages
We’ve built our web-poll application and will now look at third-party packages. One of Django’s strengths is the rich ecosystem of third-party packages. They’re community developed packages that can be used to quickly improve the feature set of an application. This tutorial will show how to add Django Debug Toolbar , a commonly used third-party package. The Django Debug Toolbar has ranked in the top three most used third-party packages in the Django Developers Survey in recent years. Where to get help: If you’re having trouble going through this tutorial, please head over to the Getting Help section of the FAQ. Installing Django Debug Toolbar ¶ Django Debug Toolbar is a useful tool for debugging Django web applications. It’s a third-party package maintained by the Jazzband organization. The toolbar helps you understand how your application functions and to identify problems. It does so by providing panels that provide debug information about the curr...