Charles Cazabon's Python Modules
These are a few modules I wrote when Python's standard library was missing large chunks of functionality. Python has since improved, and most of these functions are now available in the standard library. These modules may still be useful to people working with older versions of Python.
- ConfParser — earlier versions of Python's built-in ConfigParser module were fragile, inflexible, unintuitive, and didn't support configuration syntax that made sense to end-users. This module was a mostly-backwards-compatible replacement for it which adds many features.
- debugutil — a utility module for debugging and developing Python code.
- Simpledb — a very simple database-like persistent data store, using Python dictionaries. It allows portable lockless concurrent access.