Socket
Book a DemoInstallSign in
Socket

immukv

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

immukv

Lightweight immutable key-value store using S3 versioning

pipPyPI
Version
0.1.10
Maintainers
1

ImmuKV - Python Client

Lightweight immutable key-value store using S3 versioning.

Installation

pip install immukv

Quick Start

from immukv import ImmuKVClient, Config

config = Config(
    s3_bucket="your-bucket",
    s3_region="us-east-1",
    s3_prefix=""
)

with ImmuKVClient(config) as client:
    # Write
    entry = client.set("key1", {"value": "data"})
    print(f"Committed: {entry.version_id}")

    # Read
    latest = client.get("key1")
    print(f"Latest: {latest.value}")

Features

  • Immutable log - All writes append to global log
  • Fast reads - Single S3 request for latest value
  • Hash chain - Cryptographic integrity verification
  • No database - Uses S3 versioning only
  • Auto-repair - Orphaned entries repaired automatically

See the full documentation for more details.

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts