sled 0.29.2

a modern embedded database
Documentation
1
2
3
4
5
6
7
8
#!/usr/bin/env python3
from sled import Conf

c = Conf()
c.path(b"ALICE.data")
t = c.tree()
t.set(b"k1", b"v1")
t.close()