Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
ImportError: Could not import settings · Issue
I came across this myself when using django-admin. Updating PYTHONPATH fixed it, as recommended by PyDanny -
makinacorpus/django-leaflet
-
crunchadeal.com
-
crunchadeal.com
-
ccnmtl/django-munin
-
Arkestra
Django CMS extension to add people, events etc. -
python - How to do "insert if not exist else update" with mongoengine? - Stack Overflow
-
How To Tango With Django — How to Tango with Django
-
Upgrading Django (to 1.7)
-
Upgrading Django (to 1.7)
-
Customizing Django's Default User Model - Build This
-
Building a Django App Server with Chef: Part 2 — Surfing in Kansas
node[:ubuntu_python_packages].each do |pkg| package pkg do :upgrade end end # System-wide packages installed by pip. # Careful here: most Python stuff should be in a virtualenv. node[:pip_python_packages].each_pair do |pkg, version| execute "install-#{pkg}" do command "pip install #{pkg}==#{version}" not_if "[ `pip freeze | grep #{pkg} | cut -d'=' -f3` = '#{version}' ]" end end -
Django’s Admin in Production
Django's admin is extremely helpful but there are some caveats when using it in production especially around relationships. -
ArunRocks - Introducing Edge - a Modern Django Project Template
-
Registration for Django - the easy way
A blog post by funky bob outlining how, with modern versions of Django, Registration can be done easily. -
Lightweight Django - O'Reilly Media
-
Getting Started with Django and PostgreSQL Full-Text Search
-
Getting Started with Django and PostgreSQL Full-Text Search
-
Django Rest Framework - an introduction
-
highperformancedjango.com
-
High Performance Django The Book
-
Setting up Django-allauth | djangosteps
-
The missing django-allauth tutorial | Sarah Hagstrom
-
Django and AJAX Form Submissions - say 'goodbye' to the page refresh - Real Python
-
Docker Explained: How To Containerize Python Web Applications | DigitalOcean