Partially Attended

an irregularly updated blog by Ian Mulvany

blog posts about Django

Django models vs. Pickling objects for object persistence.

I do a bit of code hacking and I often find myself putting objects into pickle files, and reading and writing them in order to fake object persistence. It's easy, but messy and it begins to leave lot's of pickle files sitting around in your path. I've decided to finally make the switch towards using a more grown up persistent object solution. I've decided to try out Django + SQLite. ... (more)