alittletooquiet.net

Testing Django XML-RPC interfaces

Posted 2009-11-01.

If you have a Django application that with one or more views handling XML-RPC requests, you may have found that it is difficult to test these views thoroughly. Testing business logic can be done by testing the view functions directly, of course, but you may also want to test that the views integrate correctly with the XML-RPC layer.

The Problem With ctypes

Posted 2009-03-15.

Not long ago, I migrated pytagsfs from the python-fuse C bindings to custom bindings implemented with ctypes, based on fuse.py. All was going well, and I believed it was the right choice at the time. If I knew then what I know now, though, I wouldn't have gone down that path.