chiark / gitweb /
c3651bf6e707fcd131aa327285a85e8716b43bd4
[python-cdb] / debian / control
1 Source: python-cdb
2 Section: python
3 Priority: extra
4 XS-Python-Version: >= 2.5, << 2.8
5 Maintainer: Mark Wooding <mdw@distorted.org.uk>
6 Build-Depends: debhelper (>> 3.0.0)
7 Standards-Version: 3.5.2
8
9 Package: python-cdb
10 Architecture: any
11 XB-Python-Version: ${python:Versions}
12 Depends: ${python:Depends}, ${shlibs:Depends}
13 Description: Python CDB (constant database) library
14  D. J. Bernstein's cdb library adapted as a python extension module. You 
15  probably already know that cdb files are mappings of keys to values (c.f., 
16  dbm and friends), designed for wickedly fast lookups and atomic updates.
17  .
18  This interface presents cdb files as (surprise!) mapping objects with a few
19  special features. In general, the module tries to mimic the functionality of
20  the normal cdb utilities.