Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Simple Django deployment: a guide
-
A tour of Django server setups
-
Logging raw SQL to the console in Django | Neil Sainsbury
'version': 1, 'filters': { 'require_debug_true': { '()': 'django.utils.log.RequireDebugTrue', } }, 'handlers': { 'console': { 'level': 'DEBUG', 'filters': ['require_debug_true'], 'class': 'logging.StreamHandler', } }, 'loggers': { 'django.db.backends': { 'level': 'DEBUG', 'handlers': ['console'], } } } -
Try DJANGO Tutorial Series - YouTube
-
Django + Vue.js: CRUD App with Django Rest Framework - BezKoder
-
Django Class-Based-View Inspector -- Classy CBV
-
Try DJANGO Tutorial - 1 - Welcome - YouTube
-
python - Django non primary_key AutoField - Stack Overflow
-
Django Tutorial Part 9: Working with forms - Learn web development | MDN
-
Thumbs Up News - a project that aims to scrape different news sources and use a sentiment analysis classifier to check if the headline of the article is a positive/neutral one or negative
-
charles leifer | Working around Django's ORM to do interesting things with GFKs
-
the-paperless-project/paperless: Scan, index, and archive all of your paper documents
Scan, index, and archive all of your paper documents - the-paperless-project/paperless -
adamchainz/django-read-only: Disable Django database writes.
-
Nice article on Django abstact models as mixins
-
Awesome Django
-
Awesome Django
-
How to Use Bootstrap 4 Forms With Django
-
Hello, World 5 Different Ways | LearnDjango.com
-
Modern JavaScript for Django Developers
-
A Django project blueprint to help you learn by doing
A really nice walkthrough of thinking about, planning and making a Django website, for those who have done initial tutorials and now want to make their own things. -
Bedrock: The SQLitening
-
Guide to using Django with Zappa
This repo exists to document the process of getting a standard Django project running live in AWS Lambda using the zappa project. We will explore various configurations in a building-block fashion in the hopes that folks can leverage only the relevant parts for their needs. -
Bedrock: The SQLitening · Mozilla Marketing Engineering & Operations
-
How to create a new Django project: step by step guide
-
Asynchronous tasks in Django with Django Q
Learn how to use Django Q for offloading asynchronous tasks in your Django applications.