Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
python - AttributeError: 'Manager' object has no attribute 'get_by_natural_key' error in Django? - Stack Overflow
-
Handle choices the right way
-
Avoiding SQL Antipatterns using Django (and Postgres) - Schinckel.net
-
19. AJAX in Django with JQuery — How to Tango with Django 1.7
-
python - how to setup custom middleware in django - Stack Overflow
-
Mistakes I Made Writing a Django App (and How I Fixed Them)
-
How to Consume REST APIs with Django & Python Requests | Ultimate Django
-
Good Code - Singleton models in Django
-
Handle choices the right way
-
Welcome to Cookiecutter Django’s documentation! — Cookiecutter Django 2017.2.3 documentation
-
Secure Downloads — django-filer 1.2.6.rc2 documentation
-
Using Amazon S3 to Store your Django Site's Static and Media Files | Caktus Group
-
Nginx, Django, and X-Accel-Redirects | Wellfire Interactive
-
Caching in Django With Redis
Let's look at some of the factors that bog down your application and then demonstrate how to implement caching with Redis to counteract their effects. -
Mistakes I Made Writing a Django App (and How I Fixed Them)
-
Django by errors - a different Django tutorial — Django by errors 0.2 documentation
-
Reducing queries for FK/M2M lookups? Equivalent to select_related, or prefetch_related? - Google Groups
For tracking things down I'm inserting this into the log config: 'django.db.backends': { 'handlers': ['console'], 'level': 'DEBUG' }, And this into models.py: if 0: def log_stack(orig): def patch(*args, **argv): print import traceback import sys traceback.print_stack(file=sys.stdout) print return orig(*args, **argv) return patch from django.db.backends.util import CursorDebugWrapper CursorDebugWrapper.execute = log_stack(CursorDebugWrapper.execute) CursorDebugWrapper.executemany = log_stack(CursorDebugWrapper.executemany) -
Django is Boring, or Why Tech Startups (Should) Use Django
-
Avoid Django's GenericForeignKey - All Unkept
-
django-reversion — django-reversion 2.0.8 documentation
-
django-s3direct/utils.py at master · bradleyg/django-s3direct · GitHub
django-s3direct - Add direct uploads to S3 with a progress bar to file input fields. Perfect for Heroku. -
Simple django wordpress integration with Django WordPress API library
-
Caching in Django with Redis - Real Python
-
Welcome to django-tenant-schemas documentation! — django-tenant-schema dev documentation
-
Why class-based views are not all that great – Medium