https://github.com/windsting/my-kv-store
A key-value store WebAPI utilizing free online resources
https://github.com/windsting/my-kv-store
cloud-storage-api flask-sqlalchemy key-value mysql
Last synced: over 1 year ago
JSON representation
A key-value store WebAPI utilizing free online resources
- Host: GitHub
- URL: https://github.com/windsting/my-kv-store
- Owner: windsting
- License: mit
- Created: 2023-10-06T15:46:40.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-15T04:33:16.000Z (over 2 years ago)
- Last Synced: 2025-01-23T11:45:26.004Z (over 1 year ago)
- Topics: cloud-storage-api, flask-sqlalchemy, key-value, mysql
- Language: HTML
- Homepage: https://windsting.github.io/my-kv-store/
- Size: 297 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# My Kv Store
A project to provide your own FREE online key-value storage API.
Please refer to the document page for
- [how to consume the API](https://windsting.github.io/my-kv-store/#get-set-jump)
- [how to deploy your own API](https://windsting.github.io/my-kv-store/#deploy-jump)
## Why
Inspired by [Free Online Key Value store](https://keyvalue.immanuel.co). Back then I was looking for a free online key-value storage service for a hobby project. The project is a [Userscript](https://en.wikipedia.org/wiki/Userscript) for a forum, which need to persist some user generated data. But the quota provided by above service is not enough, which is:
> (yourkey - maxlength = 64, yourvalue = maxlength = 1024)
Since the concept is not too complicated, I decided to implement it myself.