a collection of utilities for Python programmers
Project description
pyutil – a library of useful Python functions and classes
Many of these utilities (or their ancestors) were developed originally by Zooko Wilcox-O’Hearn for the Mojo Nation, Mnet, Allmydata.com “Mountain View”, Tahoe-LAFS, or SimpleGeo’s products. Please note that version 2.X is based on Python 2. Version 3.X will has support for Python 3.
utilities
current
mathutil.py - integer power, floor, ceil, and nearest multiples; permute and fit slope
memutil.py - statistics and diagnostics for memory use and garbage collection
platformutil.py - get platform including Linux distro; more accurate and less noisy than platform.platform()
strutil.py - common prefix and suffix of two strings, and newline processing
assertutil.py - test preconditions, postconditions, and assertions
benchutil.py - benchmark a function by running it repeatedly
fileutil.py - work with files and directories
iputil.py - query available local IPv4 addresses
jsonutil.py - wrapper around simplejson which converts decimal inputs to Python Decimal objects instead of to Python floats
lineutil.py - remove extra whitespace from files
testutil.py - utilities for use in unit tests, especially in Twisted
time_format.py - date and time formatting operations
version_class.py - parse version strings into a Version Number object
verlib.py - utility to compare version strings, by Tarek Ziadé
out of shape
I don’t currently use these, but I still think they are possibly good ideas.
nummedobj.py - number objects in order of creation for consistent debug output
observer.py - the Observer pattern
increasing.py - an implementation of a monotonically-increasing timer; By the way a future, better implementation of this would use CLOCK_MONOTONIC or CLOCK_MONOTONIC_RAW if it were available: http://stackoverflow.com/questions/1205722/how-do-i-get-monotonic-time-durations-in-python/1205762#1205762
repeatable_random.py - Make the random and time modules deterministic, so that executions can be reproducible.
strutil.py - string utilities
cache.py - multiple implementations of a least-recently-used in-memory caching strategy, optimized for different sizes (note: I, Zooko, nowadays prefer a random-replacement cache eviction strategy over least-recently-used because the former has more consistent and predictable behavior)
odict.py - ordered dictionary implementation: see PEP 372. Note: there is now (as of Python 2.7) an ordered dict implementation in the standard library, but I haven’t checked if it is as good as this one.
zlibutil.py - zlib decompression in limited memory
deprecated
I no longer use these and I don’t recommend that you do either.
logutil.py - send log messages to Twisted logger if present, else Python library logger
weakutil.py - allows a bound method’s object to be GC’d
twistedutil.py - callLater_weakly, a variant of Twisted’s callLater which interacts more nicely with weakrefs
PickleSaver.py - make all or part of an object persistent, by saving it to disk when it’s garbage collected
humanreadable.py - an improved version of the builtin repr() function
find_exe.py - try different paths in search of an executable
dictutil.py - several specialized dict extensions, as well as some convenient functions for working with dicts
randutil.py - various ways to get random bytes
xor.py - xor two same-length strings together
Thanks to Peter Westlake and Ravi Pinjala for help documenting what these do.
download
source code (git)
issue tracker
tests and benchmarks
Testing requires these dependencies: twisted, setuptools_trial, and simplejson. You can install them by running: pip install twisted setuptools_trial simplejson.
To run tests: python ./setup.py trial -s pyutil.test.current.
You can also run the tests with the standard pyunit test runner instead of trial, but a couple of the tests will fail due to the absence of Trial’s “Skip This Test” feature. You can also run the tests of the out-of-shape and deprecated modules:
python ./setup.py trial -s pyutil.test.out_of_shape
python ./setup.py trial -s pyutil.test.deprecated
Or of all modules:
python ./setup.py trial -s pyutil.test
Some modules have self-benchmarks provided. For example, to benchmark the cache module: python -OOu -c 'from pyutil.test import test_cache; test_cache.quick_bench()'
or for more complete and time-consuming results: python -OOu -c 'from pyutil.test import test_cache; test_cache.slow_bench()'
(The “-O” is important when benchmarking, since cache has extensive self-tests that are optimized out when -O is included.)
testing with virtualenv
You can install all testing tools and test-time dependencies in a local virtualenv which avoids interference with user- or system-wide python packages. Here’s an example of this process (command output omitted):
$ git clone 'https://github.com/tpltnt/pyutil'
$ cd pyutil/
$ virtualenv ./venv
$ ./venv/bin/pip install twisted setuptools_trial simplejson
$ ./venv/bin/python ./setup.py trial -s pyutil.test
LICENCE
You may use this package under the GNU General Public License, version 2 or, at your option, any later version. You may use this package under the Transitive Grace Period Public Licence, version 1.0, or at your option, any later version. (You may choose to use this package under the terms of either licence, at your option.) You may use this package under the Simple Permissive Licence, version 1 or, at your option, any later version. See the file COPYING.GPL for the terms of the GNU General Public License, version 2. See the file COPYING.TGPPL.rst for the terms of the Transitive Grace Period Public Licence, version 1.0. See the file COPYING.SPL.txt for the terms of the Simple Permissive Licence, version 1.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.