https://github.com/handrake/py-toy-kv
Toy key-value store in Python
https://github.com/handrake/py-toy-kv
Last synced: about 1 year ago
JSON representation
Toy key-value store in Python
- Host: GitHub
- URL: https://github.com/handrake/py-toy-kv
- Owner: handrake
- Created: 2024-07-13T13:33:54.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-21T07:50:03.000Z (almost 2 years ago)
- Last Synced: 2025-05-21T01:16:46.996Z (about 1 year ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# py-toy-kv
Toy key-value store in Python
It uses a Python dictionary as a storage engine and a Python queue for synchronization
## Run
Simply execute the following command.
```
uvicorn main:app --reload
```