There’s plenty of material (documentation, blogs, books) out there that’ll help you write a site using Django… but then what? You’ve still got to test, deploy, monitor, and tune the site; failure at deployment time means all your beautiful code is for naught.
Read Read World Django as it unfolds the tutorial which examines how best [...]
We are happy to announce that oCricket now has live cricket scores of international matches! The scores can be seen on the top right hand corner all pages on oCricket and they look like the one below:
But don’t you think it would be cool if you could put live cricket scores on your website/blog too? [...]
The Washington Times has released few open source projects. Visit Washington Times Open Source for more.
The Washington Times has used open source projects for some time now. All of our servers run Ubuntu linux. Our database servers use PostgreSQL. Our web servers use lighttpd and Apache httpd, and memcached. We develop entirely in python, using [...]
“These are the sorts of differences seen in both stacks. They are common, and commonly pivotal to arguments comparing the two frameworks. Proponents of one framework typically argue one way ‘because it is the way decreed by our language authors’. So really you’re looking at which language you prefer.”
(Via: SuperJared)
Python 3.0 (a.k.a. “Python 3000″ or “Py3k”) is a new version of the language that is incompatible with the 2.x line of releases. The language is mostly the same, but many details, especially how built-in objects like dictionaries and strings work, have changed considerably, and a lot of deprecated features have finally been removed. Also, [...]
Gustavo Picon, announced his new project django-taggable. As the author describes, django-taggable is “An efficient, denormalized and multidimensional tagging library for Django 1.0+”
Well, we’ve been working hard to improvise our codebase and enhance a lot of the internal code framework. The broad updates with this beta release are
Upgraded to the more powerful Python 2.5 Release.
Upgraded the code to the sparkling new Django 1.0.
Added the ability to easily add photos — service starting with Flickr, more services will [...]
This Week in Django have a series of screencast — Django From the Ground Up – from setting up version control, building the models, views, and crafting the templates, to setting up and automatically deploying to a production server.
Looking at templates for forms in Django http://linkbun.ch/1gns
The major theme of Python 2.6 is preparing the migration path to Python 3.0, a major redesign of the language. Whenever possible, Python 2.6 incorporates new features and syntax from 3.0 while remaining compatible with existing code by not removing older features or syntax. When it’s not possible to do that, Python 2.6 tries to [...]
Adam Gomaa explains the Python property built-in and shows how it can be used to improve Django’s model-based URL generation.