Tag Archives: xml

lxml vs. ElementTree

While lxml has some excellent benchmarks about the speed of lxml.etree vs. ElementTree, I wanted to run some tests that were as close as possible to my own use case (fairly simple multi-megabyte XML files). Here are the results of … Continue reading

Posted in Python, Technology | Tagged , , , | 7 Comments

Fun with SQLObject and mxDateTime

I’m working on a small CherryPy web service that among other things saves timestamps to a database. The timestamp is in RFC 3339 format (like 2007-07-31T16:05:00.000-05:00), and I needed to store the timezone. Luckily mxDateTime and SQLObject’s DateTimeCol both support … Continue reading

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