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.
Vedis does lots of little things.
![](http://media.charlesleifer.com/blog/photos/more-hueys.png)
[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.
db.hmset(‘my_hash’, foo=’bar’, baz=’nuggets’) my_hash = d.hgetall(‘my_hash’) # my_hash == {‘foo’: ‘bar’, ‘baz’: ‘nuggets}
I will have documentation for the available commands and return types available soon!
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.2.tar.gz
.
File metadata
- Download URL: vedis-0.1.2.tar.gz
- Upload date:
- Size: 284.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cbc15590c2e7e9a7b43e875ab9d6e36eaedfeafe4197d2adacfd503a9a4460e8 |
|
MD5 | f2108b3a02f2cf17d0092f1d33cef8ea |
|
BLAKE2b-256 | 541c53f1731fc9a12697ba6a6103a4dad687632e9e87772cfe38fed3546902d7 |