Skip to main content

Python Redis Object Mapper

asyncio based Redis object mapper

Table of content

Installation

TODO

Usage

import asyncio

from dataclasses import field
from typing import Set, Dict

from aio_rom import Model
from aio_rom.fields import Metadata
from aio_rom.session import redis_pool


class Foo(Model):
    bar: int
    foobar: Set[int] = field(default_factory=set)
    my_boolean: bool = False
    transient_field: Dict = field(metadata=Metadata(transient=True))


class OtherFoo(Model):
    foo: Foo

async def main():
    async with redis_pool("redis://localhost"):
        foo = Foo(123, {1,2,3}, True)
        await foo.save()
        ...
        foo2 = await Foo.get(321)
        other_foo = OtherFoo(303, foo2)
        await other_foo.save()

asyncio.run(main())

Features

TODO

TODO

  1. Docs
  2. Tests

Limitations

  1. configure must be called before other calls to Redis can succeed, no defaults to localhost atm.
  2. You cannot use from __future__ import annotations in the same file you define your models. See https://bugs.python.org/issue39442
  3. TODO Supported datatypes
  4. Probably more ...

Release files for aio-rom 0.1.7

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for aio-rom 0.1.7
File Size Uploaded
aio_rom-0.1.7.tar.gz 16.5 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for aio-rom 0.1.7
File Interpreter ABI Platform
aio_rom-0.1.7-py3-none-any.whl Python 3 none any Details

Total release size: 28.5 kB

Release files / aio_rom-0.1.7.tar.gz

Download URL aio_rom-0.1.7.tar.gz
Size 16.5 kB
Tags Source
SHA-256 checksum
How to use checksums
a06f371f4378d13aa7163979ff070252d669b566f8e215606f6a28ec94a39bb4
BLAKE2b-256 checksum
How to use checksums
786afc83f8d97add4cd8f9bb14d5654bd3eb7465456b49713499b1806583002f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aio_rom-0.1.7-py3-none-any.whl

Download URL aio_rom-0.1.7-py3-none-any.whl
Size 12.0 kB
Tags Python 3
SHA-256 checksum
How to use checksums
3d8bdeb2e47d21bfd87106b87f0b98f700f12710623a1e4728353b5e5e2ca117
BLAKE2b-256 checksum
How to use checksums
c6c908643d6def060302316f194b4d82c895be0398343a70c7771781c4ac0570
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release history Release notifications | RSS feed

This release

0.1.7 This release

2 release files

0.1.6

2 release files

0.1.5

2 release files

0.1.4

2 release files

0.1.3

2 release files

0.1.2

2 release files

0.1.1

2 release files

0.1.0

2 release files

0.0.9

2 release files

0.0.8

2 release files

0.0.6

2 release files

0.0.5

2 release files

0.0.4

2 release files

0.0.3

2 release files

0.0.2

2 release files

0.0.1

2 release files

0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page