Skip to main content

Dynamo Dao

Project description

Dynamo Dao

Typed library for interacting with DynamoDb tables.

Installation

Available on PyPI

pip install dynamo-dao

Usage

The following example code shows some basic usage of this package. Note that the ExampleDao must define 4 abstract properties:

  1. table_name - Name of the DynamoDb table resource (maps directly to what you'd see on the AWS console).
  2. unique_key - The list of keys that together uniquely define an entry in the table.
  3. convert_to_dynamo - A method which takes in the object and converts it to the entry in the DynamoDb table
  4. convert_from_dynamo - The opposite of convert_to_dynamo
from typing import NamedTuple

from dynamo_dao import Dao, DynamoObject

class Example(NamedTuple):
    foo: str
    bar: int

class ExampleDao(Dao[Example]):
    table_name = "example"
    unique_key = ["foo"]

    def convert_to_dynamo(self, var: Example) -> DynamoObject:
        return {"foo": var.foo, "bar": var.bar}

    def convert_from_dynamo(self, var: DynamoObject) -> Example:
        return Example(foo=str(var["foo"]), bar=int(var["bar"]))


example_dao = ExampleDao()

example = Example(foo="hi", bar=1)

example_dao.create(example)
result = example_dao.read_one("foo", "hi")

assert example == result

Why use?

The base dao is a generic object, which means child classes will benefit from type checking on functions like read and create.

In the example above, the type of result is Example.

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

dynamo-dao-0.0.3.tar.gz (2.9 kB view details)

Uploaded Source

Built Distribution

dynamo_dao-0.0.3-py3-none-any.whl (4.0 kB view details)

Uploaded Python 3

File details

Details for the file dynamo-dao-0.0.3.tar.gz.

File metadata

  • Download URL: dynamo-dao-0.0.3.tar.gz
  • Upload date:
  • Size: 2.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for dynamo-dao-0.0.3.tar.gz
Algorithm Hash digest
SHA256 a48a164daf3488ee67d0d214fb669a7f7ebd4199eadadb6c32dd4f200409f1a5
MD5 47f0d38e24e90aef0b94b7b901a0f973
BLAKE2b-256 426f1d512ccfa89879b05a3e063d178d4637150b17e38fb2080481df5396ece0

See more details on using hashes here.

File details

Details for the file dynamo_dao-0.0.3-py3-none-any.whl.

File metadata

  • Download URL: dynamo_dao-0.0.3-py3-none-any.whl
  • Upload date:
  • Size: 4.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for dynamo_dao-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 ba09a379839ef8141b343993929cfe6350190dc4f2c1b6a542bdb64577529aaf
MD5 27682eb3e6acffc7c9817b7b3aeedbcc
BLAKE2b-256 5b9264316b31824cb3c6a7125f699e82115bb52814ab6cc20bec7544bf357327

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