Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Running WebSocket for Redis — django-websocket-redis 0.4.4 documentation
-
etianen/django-uuid-upload-path
django-uuid-upload-path - Generate short UUIDs and use them as paths for uploaded media files in Django. -
ArunRocks - Python 3 Cheatsheet for Djangonauts
-
etianen/django-s3-storage
django-s3-storage - Django Amazon S3 file storage. -
Beginner's Guide to the Django Rest Framework - Tuts+ Code Tutorial
-
Resolving circular imports in celery and django
Solution: decouple models from tasks using Django signals. -
Python Weekly - Issue 192
RT @PythonWeekly: Python Weekly - Issue 192 #python #django #flask #ipython #arduino #jython #pycharm #twisted #opbeat #slack #docker -
18F — Tocking time
We created a simple Django app @18F to help us track our time. Hoping others can use it! Check out Tock: -
DrkSephy/django-hackathon-starter
-
Django Development with Docker Compose and Machine - Real Python
-
antoinemartin/django-windows-tools
django-windows-tools is a Django application providing management commands to host Django projects in Windows environments. It provides management commands allowing to: Host a Django application behind IIS as a FastCGI application (requires IIS 7 and Up). Run Celery and Celery Beat background processes as a Windows Service. -
Recommended Django Project Layout
-
djangosnippets: ModelChoiceField with optiongroups
self.choice(ch) for ch in choices -
The easiest way to build and manage your Django projects - Aldryn - django-cms.org
-
Welcome to Wagtail’s documentation — Wagtail 1.0b2 documentation
-
Starting a Django Project - Real Python
-
python - How do I filter ForeignKey choices in a Django ModelForm? - Stack Overflow
-
django-analytical
-
Effective Django — Effective Django
-
CrudKit
Open source CRUD Framework for PHP/MySQL See Demos -
Django Hackathon Starter
A template for a Django project - biased towards use of external API's but also contains an OAuth example. -
ArunRocks - Python 3 Cheatsheet for Djangonauts
-
Django Development with Docker Compose and Machine - Real Python
-
Filtering on annotations in Django
-
Overriding save() method in Django models. | TrickVeda
class ModelClass (models.Model): name = models.CharField(max_length=100) email = models.EmailField() hash = models.CharField(primary_key=True, max_length=32)