kyna

A


Keywords
LOL, JSON, DB
License
MIT
Install
pip install kyna==0.4.7

Documentation

kyna

an easier way to use json files in python. for now it has two four six methods, none of which are useful

Installation

pip install kyna

Usage

import kyna

db = kyna.load("test.db") ## File will be made if it does not exist

db.set("name", "alan")

db.get("name") ## returns "alan"

db.dump() ## saves any changes made

db.asDict() ## returns the file as a python dictionary