summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2024-05-09 11:51:05 +0200
committerYuval Adam <_@yuv.al>2024-05-09 11:51:05 +0200
commit45739310cf9e0fa6a120651b1fa2c71e32f8aee9 (patch)
treedc59c3ce82e1538fce32c9b63ea203454f1f8c19 /README.md
parentf8c99a7b08210e3c1ae5abc8d11670b05f33ccde (diff)
Update README, bump v1.1.0v1.1.0
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/README.md b/README.md
index fff5978..f0e14aa 100644
--- a/README.md
+++ b/README.md
@@ -65,6 +65,24 @@ List all keys existing in stash:
keys = stash.list_keys()
```
+Delete a key:
+
+```python
+stash.delete("foo")
+```
+
+Check for key existance:
+
+```python
+stash.exists("foo")
+```
+
+Drop all files (careful, this deletes everything):
+
+```python
+stash.drop()
+```
+
## License
[MIT](LICENSE)