From 6e7295262eba48ca6ef8fa8dcb16d8ce84c2af09 Mon Sep 17 00:00:00 2001 From: RGBCube <78925721+RGBCube@users.noreply.github.com> Date: Wed, 12 Jan 2022 21:58:15 +0300 Subject: [PATCH] Update README.md --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f31d949..b59c438 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,15 @@ # ClutterDB Extremely simple JSON database which behaves like a dict. + This was made for ClutterBot (still in development). +# Usage +Clone [this](https://github.com/Clutter-Cluster/ClutterDB/blob/main/db.py) file into your project folder. + +Add `from db import CluttterDB` to the top of your project. # Docs ## `db.set(key: str, value)` Sets the key to the value in the JSON. -## `db.get(key: str, default=None)` +## `db.get(key: str, *, default=None)` Returns the value of the key in the json, if the key isn't set in the json, it returns the default kwarg. ## `db.all()` Returns all the JSON data. @@ -16,7 +21,7 @@ Note that this will not do anything if the key isn't set in the JSON. Deletes everything in the JSON. Use with caution. -# Usage +# Examples Code: ```python from db import ClutterDB