Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
PyGoWaveServerInstallation - pygowave-server - Set up your own !PyGoWave Server - Google Code
-
Persistent Django on Amazon EC2 and EBS – The easy way « Thomas Brox Røst
-
Python Package Index : fez.djangoskel 0.3.1
-
Python Package Index : Browse
-
Deploying a Django app on the desktop » Blog Archive
-
Corsets by Vollers Corsets | Underbust & Overbust Fashion Corsets | Vollers
-
ask's celery at master - GitHub
-
bartTC's pinax-holidayhouse-demo at master - GitHub
-
celery - Distributed Task Queue for Django. — Celery v0.3.5 (unstable) documentation
-
Testing Django Views for Concurrency Issues | Django Web Development | Raleigh Durham Chapel Hill | Caktus Consulting Group
-
haineault.com / blog / Django pluggable: jQuery integration
-
django-notify - Google Code
-
Zork.net Message Of The Day
-
Playground Blues / Working with Python and RabbitMQ
-
The Joyent Community / Django 1.0 on shared servers?
-
An Introduction to Using CouchDB with Django
Welcome to the final installment of this series, which has looked at the advantages of Django's loose binding philosophy. At first, we looked at replacing Django's templating system with Jinja2. Next, we looked at using SQLAlchemy instead of Django's ORM, and in this third segment we are going to look at using CouchDB instead of a traditional object relational database for data storage. CouchDB is one of the more exciting projects--measured in number of semi-plausible day dreams it has inspired--I've run into in the past year. It is an ideological rival to relational databases, and instead of being focused on highly detailed schemas (long ints, varchars of length 25, and blobs of binary data, oh my) it deals in documents. These documents may be comprised of identical fields, but may also contain dissimilar fields, allowing the same flexibility as Google's BigTable. Beyond that, CouchDB brings some other unexpected goodies to the table like document versioning1. Before we get started you'll need to install CouchDB, which won't be covered in this tutorial (install on OS X, install on Windows, install on Ubuntu). Our Project In this tutorial we're going to use CouchDB to store the data for a simple Django webapp …