20 Sep, 2008
Posted by: john In: Guides
Django may be the Python web framework getting all the press recently, but web.py is definitely a nice, simple framework. One of the nice aspects of web.py is that it exposes methods for the basic HTTP methods (GET, POST, PUT, DELETE, etc.) and uses these methods to process each request from the client. [...]
07 Jun, 2008
Posted by: john In: Ubuntu
I have been working on an open source project, jsonpickle. The goal of the project is to be able to serialize a Python object into standard JSON notation. Python can “pickle” objects into a special binary format, but sometimes it is nice to get a human-readable format. Especially with projects like CouchDB [...]