Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
How To Make Search Fields Dynamic in the Django REST Framework | by Akshar Raaj | Better Programming | Medium
-
How to add Search functionality to a Django REST Framework powered app | by Akshar Raaj | The Startup | Medium
-
How to Use Django Bulk Inserts for Greater Efficiency | Caktus Group
-
Django Views — The Right Way
Luke Plant's essay opinionated approach to Django views. Function-based over class-based. -
Add a Shopping Cart to Any Website in Minutes - Snipcart
-
Guide to Django E-Commerce (Bonus: a Wagtail Shop Tutorial) - Snipcart
-
Z-polls - a poll app made with Django & Bulma.
https://news.ycombinator.com/item?id=24270480 -
Websites Using Django in Production — Podcast and Interviews
Podcast episodes and interviews where developers talk about how and why they built their web app in Django. -
Testing in Django (Part 1) – Best Practices and Examples – Real Python
In this tutorial, we look at the basics of unit testing in Django -
Celery 4 Periodic Task in Django. Automation in Django is a developer… | by Yehan Djoe | Medium
How to set up celery beat to run cron jobs in Django -
django-pattern-library
A module for Django that helps you to build pattern libraries and follow the Atomic design methodology. -
Surviving Django (if you care about databases) — Daniele Varrazzo
-
Asynchronous support | Django documentation | Django
-
How to Work with AJAX in Django | Pluralsight
-
Django Custom User Model | LearnDjango.com
-
Caching in Django | TestDriven.io
Caching is typically the most effective way to boost an application's performance. For dynamic websites, when rendering a template, you'll often have to gather data from various sources (like a database, the file system, and third-party APIs, to name a few), process the data, and apply business logic to it before serving it up to a client. Any delay due to network latency will be noticed by the end user. For instance, say you have to make an HTTP call to an external API to grab the data required to render a template. Even in perfect conditions this will increase the rendering time which will increase the overall load time. What if the API goes down or maybe you're subject to rate limiting? Either way, if the data is infrequently updated, it's a good idea to implement a caching mechanism to prevent having to make the HTTP call altogether for each client request. This article looks at how to do just that by first reviewing Django's caching framework as a whole and then detailing step-by-step how to cache a Django view. -
Rapid Prototyping in Django.pdf - Google Drive
This looks like some good stuff. via https://www.meetup.com/djangoboston/events/272495211/comments/511196146/ -
The Temple of Django Database Performance
-
GitHub - rsinger86/django-lifecycle: Declarative model lifecycle hooks, an alternative to Signals.
This project provides a @hook decorator as well as a base model and mixin to add lifecycle hooks to your Django models. Django's built-in approach to offering lifecycle hooks is Signals. However, my team often finds that Signals introduce unnecessary indirection and are at odds with Django's "fat models" approach. -
Django Database Backup — django-dbbackup 3.2.0 documentation
This Django application provides management commands to help backup and restore your project database and media files with various storages such as Amazon S3, DropBox or local file system. -
GitHub - GaretJax/django-click: Write Django management command using the click CLI library
django-click is a library to easily write Django management commands using the click command line library -
The Django Speed Handbook: making a Django app faster - Open Folder
-
Running Django Tests in Github Actions – DMC-12
-
A tour of Django server setups
-
GitHub - fabiocaccamo/django-admin-interface: the default admin interface made customizable by the admin itself. popup windows replaced by modals.
the default admin interface made customizable by the admin itself. popup windows replaced by modals