40 projects tagged "BSD Revised"
Hasard is a pseudo-random number generator (PRNG) library. It includes multiple engines (algorithms): Park-Miller, Mersenne Twister, Linux device (/dev/urandom or /dev/random), and more. It has a simple but powerful API. For example, a PRNG seed can be generated using strong entropy (using a hardware random number generator like /dev/random on Linux). The library is written in C, and a Python binding is available. The word "hasard" is the French word for "randomness" or "chance".
pg_greentrunk provides fundamental components of GreenTrunk, an interface protocol (API) for using a PostgreSQL database with Python. It provides an interface for implementations to use, and provides documentation in the form of Python modules to allow immediate access to object descriptions, even when inside a Python console.
pg_pqueue is a Python package that provides low-level PQ protocol classes for interacting with a PostgreSQL database. It supports version 3.0 of the protocol. The package also provides a basic protocol transaction class. This class keeps the state of the protocol in an interrupt safe manner, and validates the integrity of the communication as messages are received. In general, you probably will never use this package directly, unless you are writing a driver.
optparse_gui is a drop-in replacement for Python's built-in optparse. It allows the user to enter command line arguments in a dynamically generated WX-based dialog. optparse_gui generates the dialog depending on the provided optparse options: CheckBox for boolean options, ComboBox for "choice" options, TextCtrl for all other options, and an extra TextCtrl for entering non-option command line arguments. Also, the dialog contains context-sensitive help for every option.
Pymultitool is a Python extension that provides a high-level interface to IBM Rational ClearCase MultiSite, suitable for scripting solutions. Pymultitool links directly against ClearCase libraries, saving you from the extra processing usually encountered in scripts that interact with ClearCase MultiSite, where the creation of a multitool subprocess is required to handle a request.