mirror of
https://github.com/RGBCube/JsonWrapper
synced 2025-07-27 11:47:45 +00:00
Update README.md
This commit is contained in:
parent
6a3ea28121
commit
32a06a3f0b
1 changed files with 11 additions and 0 deletions
11
README.md
11
README.md
|
@ -1,6 +1,17 @@
|
||||||
# ClutterDB
|
# ClutterDB
|
||||||
extremely simple JSON database which behaves like a dict
|
extremely simple JSON database which behaves like a dict
|
||||||
this was made for ClutterBot (still in development)
|
this was made for ClutterBot (still in development)
|
||||||
|
# Docs
|
||||||
|
## `db.set(key: str, value)`
|
||||||
|
Sets the key to the value in the JSON.
|
||||||
|
## `db.rem(key: str)`
|
||||||
|
Removes the key and value pair from the JSON.
|
||||||
|
Note that this will not do anything if the key isn't set in the JSON.
|
||||||
|
## `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.nuke()`
|
||||||
|
Deletes everything in the JSON.
|
||||||
|
Use with caution.
|
||||||
# Usage
|
# Usage
|
||||||
```python
|
```python
|
||||||
from db import ClutterDB
|
from db import ClutterDB
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue