1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
This directory contains general Python utilities that Googlers have found
useful.
We're starting off with a single module, goopy.functional, that
provides functions useful for functional-style programming (e.g.,
sort, reverse, some, every, remove_duplicates, etc).
To install the module, do:
python setup.py install
This module requires Python 2.1+ (since it uses nested scopes).
There's documentation in the "doc" directory as well as in the
documentation comments in the source itself.
There's a small unittest in goopy/functional_unittest.py.
License: BSD
URL: http://code.google.com
SF Project Page: https://sourceforge.net/projects/goog-goopy/
Email: opensource@google.com
|