We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38c250e commit 5cefec4Copy full SHA for 5cefec4
1 file changed
README.md
@@ -23,10 +23,16 @@ pip install base
23
## Usage
24
25
```python
26
-from base_python_package_template import greetings
+from cachier_client import CachierClient
27
28
-greeting = greetings()
29
-print(greeting)
+client = CachierClient("localhost", 8080).connect()
+
30
+print("should be None:", client.get("greetings"))
31
+client.set("greetings", "Hello, World!", 10)
32
+print("should be something:", client.get("greetings"))
33
+import time
34
+time.sleep(11)
35
36
```
37
38
## Support
0 commit comments