diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -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) |
