├── COPYING ├── ChangeLog ├── Example ├── MANIFEST ├── README.md ├── benchmark └── addmany.py ├── debian ├── changelog ├── compat ├── control ├── copyright └── rules ├── setup.cfg ├── setup.py ├── src ├── cdb.c ├── cdb.h ├── cdb_hash.c ├── cdb_make.c ├── cdb_make.h ├── cdbmodule.c ├── uint32.h ├── uint32_pack.c └── uint32_unpack.c └── tests.py /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acg/python-cdb/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acg/python-cdb/HEAD/ChangeLog -------------------------------------------------------------------------------- /Example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acg/python-cdb/HEAD/Example -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acg/python-cdb/HEAD/MANIFEST -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acg/python-cdb/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/addmany.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acg/python-cdb/HEAD/benchmark/addmany.py -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acg/python-cdb/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acg/python-cdb/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acg/python-cdb/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acg/python-cdb/HEAD/debian/rules -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acg/python-cdb/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acg/python-cdb/HEAD/setup.py -------------------------------------------------------------------------------- /src/cdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acg/python-cdb/HEAD/src/cdb.c -------------------------------------------------------------------------------- /src/cdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acg/python-cdb/HEAD/src/cdb.h -------------------------------------------------------------------------------- /src/cdb_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acg/python-cdb/HEAD/src/cdb_hash.c -------------------------------------------------------------------------------- /src/cdb_make.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acg/python-cdb/HEAD/src/cdb_make.c -------------------------------------------------------------------------------- /src/cdb_make.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acg/python-cdb/HEAD/src/cdb_make.h -------------------------------------------------------------------------------- /src/cdbmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acg/python-cdb/HEAD/src/cdbmodule.c -------------------------------------------------------------------------------- /src/uint32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acg/python-cdb/HEAD/src/uint32.h -------------------------------------------------------------------------------- /src/uint32_pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acg/python-cdb/HEAD/src/uint32_pack.c -------------------------------------------------------------------------------- /src/uint32_unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acg/python-cdb/HEAD/src/uint32_unpack.c -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acg/python-cdb/HEAD/tests.py --------------------------------------------------------------------------------