pymtbl 0.4.0-1 source package in Ubuntu

Changelog

pymtbl (0.4.0-1) unstable; urgency=medium

  * New upstream release.

 -- Robert Edmonds <email address hidden>  Sat, 29 Aug 2015 15:33:45 -0400

Upload details

Uploaded by:
Robert Edmonds
Uploaded to:
Sid
Original maintainer:
Robert Edmonds
Architectures:
any
Section:
python
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Bionic release universe python
Xenial release universe python

Downloads

File Size SHA-256 Checksum
pymtbl_0.4.0-1.dsc 1.7 KiB 3c54e35993897a40d08234fd6836a148f95e2e8d4a161e10b5c7e7266c41903b
pymtbl_0.4.0.orig.tar.gz 13.3 KiB 551928f17590c550fe13bcf882b138f38c3301e3d2a1c739171a547350864cd0
pymtbl_0.4.0-1.debian.tar.xz 1.9 KiB 37d7ae5ac50bcfcbcc075a7b4e3c9f6eab696f6aa02783e89a9cd6adf53f7aa4

Available diffs

No changes file available.

Binary packages built by this source

python-mtbl: immutable sorted string table library (Python bindings)

 mtbl is a C library implementation of the Sorted String Table (SSTable)
 data structure, based on the SSTable implementation in the open source
 Google LevelDB library. An SSTable is a file containing an immutable
 mapping of keys to values. Keys are stored in sorted order, with an
 index at the end of the file allowing keys to be located quickly.
 .
 mtbl is not a database library. It does not provide an updateable
 key-value data store, but rather exposes primitives for creating,
 searching and merging SSTable files. Unlike databases which use
 the SSTable data structure internally as part of their data store,
 management of SSTable files -- creation, merging, deletion, combining
 of search results from multiple SSTables -- is left to the
 discretion of the mtbl library user.
 .
 This package contains the Python extension module for libmtbl.