En Sun, 06 Apr 2008 11:34:11 -0300, Jesse Aldridge <[EMAIL PROTECTED]> escribió: > On Apr 6, 6:14 am, "Konstantin Veretennicov" <[EMAIL PROTECTED]> > wrote: >> On Sun, Apr 6, 2008 at 7:43 AM, Jesse Aldridge >> <[EMAIL PROTECTED]> wrote: >> > In an effort to experiment with open source, I put a couple of my >> > utility files up <a >> href="http://github.com/jessald/python_data_utils/ >> > tree/master">here</a>. What do you think? >> >> Would you search for, install, learn and use these modules if *someone >> else* created them? > > Yes, I would. I searched a bit for a library that offered similar > functionality. I didn't find anything. Maybe I'm just looking in the > wrong place. Any suggestions?
Haven't you heard that Python comes with "batteries included"? For most operations in your modules, you don't need anything more than what already Python provides. Most of the whitespace, find, search, replace variants are already in the standard library, or trivially implemented with the existing tools [1]. Even more speciallized functions like pattern_to_regex are already there (see fnmatch.translate [2]) So I think you would benefit a lot reading the Library Reference documentation [3]; as it says in the docs main page: "keep this under your pillow" [1] http://docs.python.org/lib/string-methods.html [2] http://docs.python.org/lib/module-fnmatch.html [3] http://docs.python.org/lib/ -- Gabriel Genellina -- http://mail.python.org/mailman/listinfo/python-list