Skip to main content

Simple append-only database with rich record formats and compression

Project description

AmoreDB

Simple append-only database for Python with rich record formats and compression.

For impatients

pip install amoredb

Example 1

import asyncio
from amoredb import AmoreDB

async def main():
    async with AmoreDB('test', 'w') as db:
        await db.append(b'foo')
        await db.append(b'bar')
        await db.append(b'baz')
        async for record in db:
            print(record)

asyncio.run(main())

Result:

b'foo'
b'bar'
b'baz'

Example 2

import asyncio
from amoredb.json import JsonAmoreDB

async def main():
    async with JsonAmoreDB('test.json', 'w') as db:
        await db.append({'foo': 'bar'})
        await db.append({'bar': 'foo'})
        async for record in db:
            print(record)

asyncio.run(main())

Result:

{'foo': 'bar'}
{'bar': 'foo'}

Record formats

The basic format for database records is bytes object. Subclasses may support other formats, as demonstrated above in the Example 2. AmoreDB provides support for the following formats:

Records are converted to the binary data by mixins and AmoreDB provides predefined classes, such, for example, as

class JsonAmoreDB(JsonMixin, AmoreDB):
    pass

Record compression

Similar to record format conversion, compression is implemented by mix-ins. AmoreDB provides a few for the following formats:

There are no predefined classes for compression, it's up to end users to define ones for their needs. For example,

from amoredb import AmoreDB
from amoredb.json import JsonMixin
from amoredb.gzip import GzipMixin

class MyDB(JsonMixin, GzipMixin, AmoreDB):
    pass

async with MyDB('test.json.gz', 'w') as db:
    await db.append({'foo': 'bar'})
    await db.append({'bar': 'foo'})
    async for record in db:
        print(record)

Record transformation pipeline

Records in AmoreDB are processed by the following methods:

    def record_to_raw_data(self, record_data):
        # do custom conversion here
        # ...
        # call base method
        return super().record_to_raw_data(record_data)

    def record_from_raw_data(self, record_data):
        # do custom conversion here
        # ...
        # call base method
        return super().record_from_raw_data(record_data)

Mix-ins override these methods and to make pipeline working, mix-ins should be defined in the right order. As we have seen above,

class MyDB(JsonMixin, GzipMixin, AmoreDB):
    pass

GzipMixin is placed in between, because compression takes place after converting record from JSON to binary data and before writing this data to file. Same for opposite direction.

Database structure

The database consists of data file and index file. Optional metadata file in JSON format may contain the structure of database class.

Index file contains positions of records except the first one which is always zero. The first element in index file is the offset of the next record. Thus, the number of items in the index file equals to the number of records.

Record id is implicit, it is the index of the record. Thus, to get a record by id, read its offset from the index file and then read the record from data file.

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

amoredb-0.0.2.tar.gz (11.8 kB view details)

Uploaded Source

Built Distribution

amoredb-0.0.2-py3-none-any.whl (13.8 kB view details)

Uploaded Python 3

File details

Details for the file amoredb-0.0.2.tar.gz.

File metadata

  • Download URL: amoredb-0.0.2.tar.gz
  • Upload date:
  • Size: 11.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.12

File hashes

Hashes for amoredb-0.0.2.tar.gz
Algorithm Hash digest
SHA256 9625af2250d0751d81818a4dbf8ccb8fcaa93992abb749399bb3f7d251690fb6
MD5 096e4db1a64265b2075196ab715f7c63
BLAKE2b-256 8b9bdeb0ceac39185bae1757b5773a5225fd7f57b8c91869e647f8b25e7fd15a

See more details on using hashes here.

File details

Details for the file amoredb-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: amoredb-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 13.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.12

File hashes

Hashes for amoredb-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 2bb4a7b505b3ebe1028d172b607cbef9c134e555e7c113628f58845f1d0b6763
MD5 0aeb321927492182f0cf2eee1e88265c
BLAKE2b-256 ba081c5914ea8280adc757dd534e730e51d13e874effc521663381d0babefd79

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