web-cache 1.1.0-2 source package in Ubuntu

Changelog

web-cache (1.1.0-2) unstable; urgency=medium

  * source-only upload to unstable
  * small tweaks to copyright file, thanks Thorsten!

 -- Antoine Beaupré <email address hidden>  Mon, 10 Jun 2024 23:10:19 -0400

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

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
web-cache_1.1.0-2.dsc 1.4 KiB 5abe87d9baf0ae9c2d8bce3ed704c245b92c83aaa8d4e88434d47040d82582ed
web-cache_1.1.0.orig.tar.gz 14.9 KiB c1a79a2e858275bb5cfb8052688a6fd143d60f5f40b51cc97bc863f486d70c7d
web-cache_1.1.0-2.debian.tar.xz 1.7 KiB 56130017aad8677fa06106eb75dd3f9e714e6bd9d80064d6aaf23ee3cd46f694

No changes file available.

Binary packages built by this source

python3-web-cache: Simple Python key-value storage backed up by sqlite3 database

 Python module for simple key-value storage backed up by sqlite3
 database. The typical use case is a URL to HTTP data cache, but it
 can also be used for non web ressources.
 .
 Features:
 .
 * Simple dict interface allows natural usage (if key in cache, value
   = cache[key], etc.)
 * Optional Zlib (deflate), BZIP2, LZMA or ZSTD (Zstandard)
   compression, with configurable compression level
 * FIFO or LRU cache eviction strategies
 * Optional thread safe interface to work around Python Sqlite3 'same
   thread' limitation
 * Provides cache hit rate statistics