https://github.com/ishankhare07/pygkv
Python library for Git as a Key-Value store
https://github.com/ishankhare07/pygkv
Last synced: over 1 year ago
JSON representation
Python library for Git as a Key-Value store
- Host: GitHub
- URL: https://github.com/ishankhare07/pygkv
- Owner: ishankhare07
- Created: 2015-06-26T14:11:21.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-06-28T11:30:44.000Z (about 11 years ago)
- Last Synced: 2025-02-24T11:04:05.011Z (over 1 year ago)
- Language: Python
- Size: 152 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PyGKV
Python library for Git as a Key-Value store
## 1. Dependencies
* None
## 2. Support
Currently the package supports the following python versions:
* Python 2.7.10
* Python 3.4.3
* PyPy3
* Pyston
* Jython
* IronPython
## 3. Usage
* The current API is quiet simple, install using pip
```bash
$ pip install pygkv
```
* Run python
```bash
$ python3
```
* Import the Library
``` python
>>> from pygkv import GitDatabase
>>> db = GitDatabase.Database()
>>> db["name"] = "Guido Van Rossum"
>>> db["name"]
Guido Van Rossum
```