Tag Archives: django

I Love Python: ZipFile Edition

For a client web project I needed to create a zip file containing a number of generated XML files. This isn’t something I need to do very often, so I briefly considered just writing the XML files to disk and … Continue reading

Posted in Open Source, Python, Technology | Tagged , | 2 Comments

BitBucket Project for Python FusionCharts Code

After my last post on FusionCharts, someone was nice enough to e-mail me some a Django snippet for exporting FusionCharts as images, so I decided I might as well put the code in a public repository. While I prefer Bazaar … Continue reading

Posted in Open Source, Python, Technology | Tagged , , , , | Leave a comment

2nd OS Bridge Proposal: Django Introduction

I just posted my second talk proposal for the Open Source Bridge Conference: Introduction to Django: The Who, What, and When As with my other talk, Web Server Shootout, I’m not trying to convince anyone of anything. We’re all already … Continue reading

Posted in Open Source, Technology | Tagged , | Leave a comment

(Yet Another) Deploying Django with CherryPy Script

Recently I deployed a Django project on an OSX server. I foolishly thought this would be as easy as on Linux until I ran into the mess that is x86_64 Apache + mod_wsgi* + Django + psycopg2 + i386 PostgreSQL. … Continue reading

Posted in GNU/Linux, Open Source, Python, Technology | Tagged , , | 2 Comments

Introducing Hzzah!

from the I-can-haz-a-search-engine department… Update: Sorry about the tacky donate link all. I tried to hide it from feed readers with WordPress’s <!–more> feature, but evidently that doesn’t apply to feeds. When it comes to market share, Google is to … Continue reading

Posted in Open Source, Python, Technology | Tagged , , , , , , , , | 1 Comment

Common Django Typo in URLconf

If you’re hacking Django and get this… ImproperlyConfigured: Error while importing URLconf ‘proj.app.urls’: ‘tuple’ object is not callable …you’re probably missing a comma in your URL configuration as Rajesh Dhawan pointed out. Django pros can move along, I know you … Continue reading

Posted in Open Source, Python, Technology | Tagged , , , | 1 Comment