Skip to main content

A AsyncIO wrapper for DBM.

Project description

A AsyncIO wrapper for Python’s DBM library.

release python tests codecov docs pre-commit Code style: black

Description

  • Supports 100% of GDBM API

  • Typing support

  • Docstrings for all methods

To ensure DBM can be used safely with AsyncIO, all DB operations are serialized, i.e. only one DB operation occurs at any given time.

This library is primarily made for GDBM, but should work with other implementations too.

Usage

Here is a basic example on how to use the queue:

import asyncio

import aiodbm


async def main():
    async with aiodbm.open("data.dbm", "c") as db:  # opening/creating database
        await db.set("alpha", "green")  # creating new key alpha with value green
        value = await db.get("alpha")  # fetching value for key alpha
        print(value)
        await db.delete("alpha")  # delete key alpha


asyncio.run(main())

Installation

You can install this library directly from PyPI with the following command:

pip install aiodbm

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

aiodbm-0.1.0a1.tar.gz (6.8 kB view hashes)

Uploaded Source

Built Distribution

aiodbm-0.1.0a1-py3-none-any.whl (4.3 kB view hashes)

Uploaded Python 3

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