Skip to main content

Version controlled object database on Redis

Project description

name:

verobject

description:

Version controlled object database on Redis

license:

MIT

What Is This?

It’s a key value store that keeps copies of past revisions.

Why you should use this

  • You’ve already deployed Redis

  • You don’t ever want to lose data

  • You like pythonic APIs

  • You want the KVS to automatically pickle (or jsonify) your data

  • You want something simple (140 source lines of code)

  • You want something that works (70 lines of test code)

Why you shouldn’t use this

  • It’s space inefficient. It doesn’t compress revision deltas like git does.

  • It doesn’t support transactions or fancy save methods like zope

Installation

From folder:

sudo python setup.py install

From cheeseshop:

sudo pip install verobject

From git:

sudo pip install git+git://github.com/jart/verobject.git

Basic Usage

import datetime, verobject, redis
redis = redis.Redis()
table1 = verobject.Store('table1', redis=redis)

table1['hk'] = {'hello': ['kitty', 'kitty', 'kitty']}
table1['ts'] = datetime.date(1984, 10, 31)
print table1['ts'], table1['hk']
del table1['ts']

table1['vc'] = 'version1'
table1['vc'] = 'version2'
table1['vc'] = 'version3'
assert list(table1.versions('vc')) == ['version3', 'version2', 'version1']
assert table1.versions('vc')[0] == 'version3'
assert table1.versions('vc')[-1] == 'version1'

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

verobject-0.1.4.tar.gz (4.0 kB view details)

Uploaded Source

File details

Details for the file verobject-0.1.4.tar.gz.

File metadata

  • Download URL: verobject-0.1.4.tar.gz
  • Upload date:
  • Size: 4.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for verobject-0.1.4.tar.gz
Algorithm Hash digest
SHA256 92636f28c567d1e13f2e442bb6ecaa962d01a666a8f045969da567aca4ee66d7
MD5 761cc8e692f9a4c6bc8ab06719b42baa
BLAKE2b-256 c81e6f844b603680ba4ceaeaf0fa73ad1c20a42ca2ed251fea7d8e697bd60f3a

See more details on using hashes here.

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