文件名称:kvds:键值数据存储
文件大小:67KB
文件格式:ZIP
更新时间:2024-03-12 01:48:58
Python
键值数据存储 基于文件的键值数据存储,支持基本CRD(创建,读取和删除)操作。 用法 import KVDS # Initializing the class with filename and filepath, # if filepath is not specified the json file will save # into current working directory kvds = KVDS(filename=FILE_NAME, filepath=FILE_PATH) #To creating new key-value kvds.create(KEY, VAULE) #To creating new key-value with ttl(ttl in seconds) kvds.create(KEY, VAULE, 300) #To read a value kvd
【文件预览】:
kvds-master
----common.py(242B)
----main.py(5KB)
----docs()
--------FW-Backend.pdf(66KB)
----test.py(610B)
----.gitignore(45B)
----README.md(599B)
----exceptions.py(125B)