1
Fork 0
mirror of https://github.com/RGBCube/JsonWrapper synced 2025-07-27 11:47:45 +00:00

Update README.md

This commit is contained in:
RGBCube 2022-01-15 15:27:43 +03:00 committed by GitHub
parent 0f182fa45a
commit 83c047ec16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,7 @@ Deletes everything in the JSON.
Use with caution.
# Examples
# `db.set("test", 123)`
## `db.set("test", 123)`
Code
```python
from db import ClutterDB
@ -38,7 +38,7 @@ print(data)
```
Output
`{'test': 123}`
# `db.rem("test")`
## `db.rem("test")`
Code
```python
from db import ClutterDB
@ -55,7 +55,8 @@ db.rem("test")
data = db.all()
print(data)```
print(data)
```
Output
`{'test': 123}
{}`