Links

Learning resources on external sites, organized as part of the Guide.

Building APIs With The Django REST Framework
Building APIs With The Django REST Framework
The tutorial demonstrates how to use Python and Django REST framework in PyCharm to develop APIs.
Create a Django App in PyCharm
Create a Django App in PyCharm
Covering all of the steps to create a simple Django application that shows the current air temperature at your location.
Writing REST with Django and Ninja
Writing REST with Django and Ninja
Django Ninja is a FastAPI inspired library for turning your Django views into REST API end-points.
Django-in-PyCharm Tips, Reloaded
Django-in-PyCharm Tips, Reloaded
Two and a half years ago we did a “Django tips in PyCharm” webinar; this refresher swaps out some tips, but also shows lots of new goodness in the IDE.
Who is behind Django? An interview with the DSF president
Who is behind Django? An interview with the DSF president
In this interview, we’ll be talking with DSF President Chaim Kirby about its history, what it does, what it needs, and what’s next.
Faster Django Queries With Materialised Views
Faster Django Queries With Materialised Views
Materialized views can be very useful for creating reports that will be used repeatedly. They cut down on query times because the query has already been made, and the view has been written to the disk.