sqlitedict 2.1.0-1 source package in Ubuntu

Changelog

sqlitedict (2.1.0-1) unstable; urgency=medium

  * New upstream release.

 -- Edward Betts <edward@4angle.com>  Tue, 06 Dec 2022 10:07:35 +0000

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
sqlitedict_2.1.0-1.dsc 2.1 KiB 8dc7cf7902ae37d2ee03cb993c4b97de9c661a4fee8e7e2eba8340f6f92c192e
sqlitedict_2.1.0.orig.tar.gz 22.6 KiB f8c03941944fce1d78676de7db723d53be61a61ec9877f3a45ab503832a5bafe
sqlitedict_2.1.0-1.debian.tar.xz 2.4 KiB fcbe174b5780e6bdfa9d8991c94c889d09ff3a12778428f6b981be4e5defb98b

Available diffs

No changes file available.

Binary packages built by this source

python3-sqlitedict: Persistent dict in Python, backed up by sqlite3 and pickle, multithread-safe

 A lightweight wrapper around Python's sqlite3 database with a simple, Pythonic
 dict-like interface and support for multi-thread access:
 .
 By default, sqlitedict's exception handling favors verbosity over efficiency.
 It extracts and outputs the outer exception stack to the error logs.
 .
 Features include:
 .
  * Values can be any picklable objects (uses 'pickle' with the highest
    protocol).
  * Support for multiple tables (=dicts) living in the same database file.
  * Support for access from multiple threads to the same connection (needed by
    e.g. Pyro).
  * Support for custom serialization or compression: