Generic key-value interface to a Git repository
Project description
A Git-based key-value store backend for Indicium.
Usage
# Instantiate and write some data.
from indicium.git import GitStore
store = GitStore("./data", autocommit=False)
store.put("/the-answer", b"10")
# Not needed with autocommit=True
store.commit("Note down the answer to everything")
# Create a new commit with the correct answer.
store.put("/the-answer", b"42")
store.commit("Fix the answer to everything")
The ./data directory will contain a Git repository which can be inspected with git. Every call to .commit() adds a commit to it or, with the auto-commit mode enabled, every call to .put() and .delete() will implicitly add a commit.
Installation
All stable releases are uploaded to PyPI, so you can install them and upgrade using pip:
pip install indicium-git
Alternatively, you can install the latest development code —at your own risk— directly from the Git repository:
pip install git://github.com/aperezdc/indicium-git
Development
If you want to contribute, please use the usual GitHub workflow:
Clone the repository.
Hack on your clone.
Send a pull request for review.
If you do not have programming skills, you can still contribute by reporting issues that you may encounter. Contributions to the documentation are very welcome, too!
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 indicium-git-0.1.0a0.tar.gz
.
File metadata
- Download URL: indicium-git-0.1.0a0.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5bb1362564308b91e800bac58c46a40d88e3dfb1f98f8c14c1d5800d2fc4681a |
|
MD5 | f83817e4d3613dc94096958696971f63 |
|
BLAKE2b-256 | 8d0c31c5d2920c9843a9501b8694417c3ef29a0a1941d8d7f3596921b40a7d88 |