Python bindings for Vedis, the embedded NoSQL database.
Project description
Python bindings for the Vedis embedded NoSQL database. Vedis is a fun, fast, embedded database modeled after Redis.
[View the vedis-python documentation](http://vedis-python.readthedocs.org/).
Vedis does lots of little things.

[vedis homepage](http://vedis.symisc.net/) and [license](http://vedis.symisc.net/licensing.html).
Installation
You can install vedis using pip.
pip install vedis
Basic usage
You can treat Vedis as a key/value store:
from vedis import Vedis db = Vedis(‘path/to/file.db’) db[‘foo’] = ‘bar’ print db[‘foo’]
But Vedis also supports many interesting Redis-type data structures and commands.
h = db.Hash(‘my hash’) h[‘sub-key’] = ‘val’ h.update(baz=’nuggets’, huey=’kitten’) my_hash = h.to_dict() # my_hash == {‘sub-key’: ‘val’, ‘baz’: ‘nuggets’, ‘huey’: ‘kitten’}0
Check out the [quick start](http://vedis-python.readthedocs.org/en/latest/quickstart.html) for more examples.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file vedis-0.1.3.tar.gz.
File metadata
- Download URL: vedis-0.1.3.tar.gz
- Upload date:
- Size: 293.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f04058a47f928571a20c1ee6a05687cb10f70b432dcfcddddecb457bddefdb3b
|
|
| MD5 |
c2a035a4f9cab18317d9a577422ec560
|
|
| BLAKE2b-256 |
594f8f0663e466e782a9fb90fc836d8f312767baf8c736965fe2b434793547e3
|