Generating a Dialog from a File

A few days ago, I wrote an article about using ConfigObj with wxPython. The first question I was asked about the article regarded using a configuration file to generate the dialog. I thought this was an interesting idea, so I took a stab at implementing that functionality. Personally I think it would be probably be …

Generating a Dialog from a File Read More »

ConfigObj + wxPython = Geek Happiness

I recently starting using Michael Foord’s ConfigObj for one of our internal wxPython applications at work. When I wrote my other ConfigObj tutorial, I wanted to show you how I was using ConfigObj with my preferences dialog, but I didn’t want all my posts to include wx. In this article, I’ll just show you how …

ConfigObj + wxPython = Geek Happiness Read More »

PyCon 2010 is Coming

PyCon USA 2010 will be held in Atlanta, Georgia this year, from February 19-21. There are also tutorial and sprint days that precede and follow the conference. Last year, I was told that my employer wouldn’t pay my way next time. So this year I had to decide if I would go all on my …

PyCon 2010 is Coming Read More »

A Brief ConfigObj Tutorial

Python comes with a handy module called ConfigParser. It’s good for creating and reading configuration files (aka INI files). However, Michael Foord (author of IronPython in Action) and Nicola Larosa decided to write their own configuration module called ConfigObj. In many ways, it is an improvement over the standard library’s module. When I first looked …

A Brief ConfigObj Tutorial Read More »