Evil, evil wxPython (and a glimmer of hope)

vivainio at gmail.com vivainio at gmail.com
Thu Feb 16 17:07:36 EST 2006


snoe wrote:

> Take a look at dabo, II think they're doing exactly what you're
> describing.
> http://blog.dabodev.com/

Dabo appear to be doing way more than what I want, with database access
etc.

My ideal module, when implemented, would be extremely small as far as
the size of code goes. I'm using path.py as an example:

http://www.jorendorff.com/articles/python/path/path.py

   def dirs(self, pattern=None):
        """ D.dirs() -> List of this directory's subdirectories.
        """
        return [p for p in self.listdir(pattern) if p.isdir()]




More information about the Python-list mailing list