Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
internationalization - set language within a django view - Stack Overflow
-
Migrating to a Custom User Model in Django | Caktus Group
-
Finally, Real-Time Django Is Here: Get Started with Django Channels | Heroku
-
Real-Time Django & Django Channels
Django Channels, in a nutshell, replaces the “guts” of Django — the request/response cycle — with messages that are sent ... -
channels
- Developer-friendly asynchrony for Django -
Making Ember Data and Django REST Framework Play Nice | nGen WorksnGen Works
-
django-filter — django-filter 0.13.0 documentation
Django-filter is a generic, reusable application to alleviate writing some of the more mundane bits of view code. Specifically, it allows users to filter down a queryset based on a model’s fields, displaying the form to let them do this. -
Finally, Real-Time Django Is Here: Get Started with Django Channels
-
Finally, Real-Time Django Is Here: Get Started with Django Channels | Heroku
-
High Performance Django The Book
-
Finally, Real-Time Django Is Here: Get Started with Django Channels
I believe that Channels will be an incredible imporant addition to Django: they allow Django to move smoothly into this new age of web development. Although these APIs aren’t part of Django yet, they will be soon! So, now’s a perfect time to start learning about Channels: you can learn about the future of Django before it lands. -
Finally, Real-Time Django Is Here: Get Started with Django Channels | Heroku
-
I don't get it - what does django-dbbackup offer over 4 lines of bash: outp... | Hacker News
outputfile=/tmp/database_`date +%Y_%m_%d`.sql.gz pg_dump fashiondb -U fashionuser | gzip > $outputfile s3cmd --config ~/.s3cfg put $outputfile s3://mybucket rm $outputfile Restoring is another 6 lines of bash: s3cmd --config ~/.s3cfg get s3://BUCKET/database_$1.sql.gz gunzip database_$1.sql.gz sudo -u postgres dropdb DBNAME sudo -u postgres createdb -O DBUSER DBNAME sudo -u postgres psql DBNAME < database_$1.sql rm database_$1.sql -
djangosnippets: backupdb command
-
Comand line dump / restore postgresql database in place - WebFaction Community
To dump and restore my database I used these commands: pg_dump -U db_username -Fc db_name > dump.db pg_restore -U db_username -n public -c -1 -d db_name dump.db -
Django Backups: dumpdata Versus SQL Dump (PostgreSQL And MySQL) - deephacks.com
-
Finally, Real-Time Django Is Here: Get Started with Django Channels | Heroku
-
The Twelve-Factor App
In the modern era, software is commonly delivered as a service: called web apps, or software-as-a-service. The twelve-factor app is a methodology for building software-as-a-service apps -
wistful/SublimeAutoPEP8: Automatically formats Python code to conform to the PEP 8 style guide using autopep8 and pep8 modules
Automatically formats Python code to conform to the PEP 8 style guide using autopep8 and pep8 modules -
Finally, Real-Time Django Is Here: Get Started with Django Channels | Heroku
-
Django Model Behaviors
-
django-cors-headers
A Django App that adds CORS (Cross-Origin Resource Sharing) headers to responses. Although JSON-P is useful, it is strictly limited to GET requests. CORS builds on top of XmlHttpRequest to allow developers to make cross-domain requests, similar to same-domain requests. Read more about it here: http://www.html5rocks.com/en/tutorials/cors/ -
django-cors-headers-not-working
-
Installation & configuration — Django HTTP Proxy 0.4.3-dirty documentation
-
Finally, Real-Time Django Is Here: Get Started with Django Channels | Heroku