Introduction
Decision AI Store
Installation
Prerequisites
-
Linux
-
Python >= 3.6
pip install .
Quick Start
Start Etcd Server
di_store etcd_server ./conf/di_store.yaml
Start Node Tracker
di_store node_tracker ./conf/di_store.yaml
Start Storage Server
di_store storage_server ./conf/di_store.yaml
Start Storage Client
from di_store import Client
client = Client('./conf/di_store.yaml')
ref = client.put(b'Hello world.')
data = client.get(ref)
print('data:', data)
client.delete(ref)
License
DI-store released under the Apache 2.0 license.