Skip to content

Instantly share code, notes, and snippets.

View iKunalChhabra's full-sized avatar
🚀
Working on something great !

Kunal Chhabra iKunalChhabra

🚀
Working on something great !
View GitHub Profile
@iKunalChhabra
iKunalChhabra / data_store.py
Last active June 27, 2023 00:52
A Utility to store key-value, configs, secrets, properties with python dict like interface that uses sqlite3 as a backend.
import sqlite3
import os
import json
from cryptography import fernet
class KeyValStore:
"""
KeyValStore is a simple key-value store that uses sqlite3 as a backend.
It is not intended to be used as a production database, but rather as a