Skip to content
This repository has been archived by the owner on Sep 28, 2022. It is now read-only.
/ picodb Public archive

PicoDB is lightweight, fast, and simple database with namespaces.

Notifications You must be signed in to change notification settings

vitalvas/picodb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

PicoDB

PicoDB is lightweight, fast, and simple database with namespaces.

PicoDB is simple

import picodb

db = picodb.load('test.db', False)

db.set_ns('space')
db.set('space', 'key', 'value')
db.delete('space', 'key')
db.get('space', 'key')
db.save()

And Easy to Install

pip install picodb