Skip to main content

A single-file database storages key-value pairs.

Project description

Install:

pip install kiwilite

Usage:

import kiwilite

with kiwilite.Open(‘<path-to-db-file>’) as storage:

# Set map data of key and value and save storage file. storage.Set({‘<key>’: ‘<value>’})

# Get value bytes of key. <value> = storage.Get(‘<key>’)

# Log: a list of timestones. [<list>, <of>, <timestones>] = storage.Log(<start-timestamp>, <end-timestamp>)

# Rollback to the last timestone before timestamp, # and clear all data after timestamp. storage.Rollback(<timestamp>)

# Lighten to the first timestone after timestamp, # and clear all invalid data before timestamp. # Data will not lose, but cannot rollback before timestamp. storage.Lighten(<timestamp>)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kiwilite-0.0.1.tar.gz (21.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page