Desi Founder @ Work

Posts Tagged ‘django

02 Oct, 2008

django standalone scripts

Posted by: sharjeel In: Programming

Standalone scripts and cron jobs are integral part of any significantly complex web based application. We use them in our applications for health monitoring, mails sending, computing scores and ratings, deferred tasks and job queues such as video processing etc.
To make a python script work which uses django’s functionality, you need to have the required [...]

24 Jul, 2008

Django Subdomains

Posted by: sharjeel In: Programming

We have added a new feature at See’n'Report. It now provides each user with a personal sub-domain URL. The URL maintains user’s profile which lists all the photo reports submitted by the user. For example my See’n'Report profile URL is http://sharjeel.seenreport.com/.
Adding support for sub-domains in Django is simple but has a few catches. It took [...]