patx/mongokv
Fix code block formatting in README
Commit 880ec1f · patx · 2025-12-16T20:51:38-05:00
Fix code block formatting in README Updated code block formatting for usage and install sections.
Comments
No comments yet.
Diff
diff --git a/README.md b/README.md
index 9a9bfea..a4e5880 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@ backed by PyMongo that provides a dead-simple Redis-like API (`set`, `get`, etc)
### Usage
-```
+```python
>>> from mongokv import Mkv
>>> db = Mkv('mongodb://localhost:27071')
@@ -18,7 +18,7 @@ backed by PyMongo that provides a dead-simple Redis-like API (`set`, `get`, etc)
### Install
-```
-pip3 install mongokv
+```bash
+$ pip3 install mongokv
```