Skip to main content

Easy-to-use synchronous/asynchronous key-value database backed by sqlite3.

Project description

miftahdb version Downloads

Easy, Simple and powerful key-value database backed by sqlite3.

Features

  • Fast and easy-to-use database
  • Simultaneously asynchronous or synchronous calls
  • Store any data supported by pickle

Requirements

  • Python3.8+

Installation

pip install miftahdb

From github (dev version)

pip install git+https://github.com/miftahDB/miftahdb-python

Documentation

miftahdb documentation available at miftahdb.rtfd.io.

Usage

from miftahdb import Client # For sync version do: from miftahdb.sync import Client
import asyncio

async def main():
    async with Client("kv.sqlite") as db:

        key = "123-456-789"
        result = await db.set(key, "Hello world. Bye!")

        if await db.exists(key):
            get_key = await db.get(key)

            print(get_key) # Hello world. Bye!

            await db.delete(key)

            await db.set(key, "This key has a lifetime of 60 seconds", 60)

            print(await db.get(key))
        else:
            print("Key not found", result)


asyncio.run(main())

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

miftahdb-0.2.1.tar.gz (11.1 kB view details)

Uploaded Source

File details

Details for the file miftahdb-0.2.1.tar.gz.

File metadata

  • Download URL: miftahdb-0.2.1.tar.gz
  • Upload date:
  • Size: 11.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for miftahdb-0.2.1.tar.gz
Algorithm Hash digest
SHA256 398a20ac3005acb1973753164ebc3b013da9751967e4e4089dd78e66da0f3148
MD5 29c0c266911b68260aa9471c7cbcfa23
BLAKE2b-256 a06f42a1da83f21e8b750dcdc1edafe1ce5e2acc256d7bb66e837d5aa088fc24

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page