Sophie

Sophie

distrib > Fedora > 17 > i386 > media > updates > by-pkgid > feece150e712ea1364292dc74dbc8dc4 > files > 6

python-cdb-0.34-3.fc17.i686.rpm

python-cdb 0.34
Mike Pomraning <mjp@pilcrow.madison.wi.us>
04 Sep 2009

INTRO
=====
The python-cdb extension module is an adaptation of D. J. Bernstein's
constant database package (see http://cr.yp.to/cdb.html).

cdb files are mappings of keys to values, designed for wickedly
fast lookups and atomic updates.  This module mimics the normal
cdb utilities, cdb(get|dump|make), via convenient, high-level Python
objects.


COPYRIGHT
=========
python-cdb is free software, as is cdb itself.

The extension module is licensed under the GNU GPL version 2 or later,
and is copyright 2001, 2002 Michael J. Pomraning.  Ancillary files from
Felix von Leitner's libowfat are also licensed under the GPL.  Finally,
modifications to D. J. Bernstein's public domain cdb implementation are
similarly released to the public domain.


INSTALL
=======

  $ tar zxf python-cdb-$VERSION.tgz
  $ cd python-cdb-$VERSION
  $ python setup.py build
  $ python setup.py install
  # python setup.py bdist --format=rpm, if you prefer

Now break it and tell me about it (or use it smoothly and tell me
about that, too).

DOCS
====
Consult the docstrings for module, class, and function documentation.

  $ python -c 'import cdb; print cdb.__doc__'
  $ python -c 'import cdb; print cdb.cdbmake("f.cdb","f.tmp").__doc__'
  $ python -c 'import cdb; print cdb.init("some.cdb").__doc__'

BUGS
====
Bug reports to Mike Pomraning <mjp@pilcrow.madison.wi.us>.


TODO
====

  - more dict-like API

  - test cases

  - take advantage of contemporary Python API 

  - formal speed benchmarks

  - possibly revert to DJB's cdb implementation
    explicitly public domain since 2007Q4

  - better README/docs

  - mingw support