Skip to main content

Dynamojo


:exclamation: Important Notice :exclamation:

Version 2.0.0 is an important update that introduces breaking changes:

  • update() and update_by_key() now default to fail_on_missing=True, so an update against a key that names no item raises ConditionalCheckFailedException instead of creating one.
    • DynamoDB's UpdateItem upserts. Absent a condition that a missing item cannot satisfy, it succeeds and creates an item holding only the key and the SET targets. That fragment then fails model validation on the next read, far from the write that caused it.
    • A caller-supplied ConditionExpression is not protection on its own — one built from attribute_not_exists arms is satisfied by a missing item, so a guard written to prevent a lost update instead authorises a create.
    • This makes the write pair coherent: save() creates (via fail_on_exists=True), update() updates. Neither is an upsert.
    • If you rely on upsert semantics, pass fail_on_missing=False.
  • fail_on_exists on save() now composes its guard as a ConditionBase rather than inlining the key names as raw text. Behaviour is unchanged for ordinary keys; the rendered ConditionExpression string differs, and a table keyed by a DynamoDB reserved word now works where it previously failed.

:exclamation: Important Notice :exclamation:

Version 1.0.0 is an important update that introduces breaking changes:

  • Pydantic dependency is now at 2.x
    • DynamojoBase._config attribute is now an abstractclassmethod named DynamojoBase.__config()
    • DynamojoBase._config must be declared in subclasses of DynamojoBase and must return a DynamojoConfig object
  • The following methods are now async:
    • DynamojoBase.delete
    • DynamojoBase.fetch
    • DynamojoBase.query
    • DynamojoBase.save
    • DynamojoBase.update

Because one table is better than more

Dynamojo takes the concept of Dynamodb Single Table design and creates a modeling framework for it. This library is opinionated in the following ways:

  • Indexes should be generic. They could mean different things for different types of items. An index attribute shouldn't imply that it is always a date, color, etc.
  • When using generic indexes the attributes should shadow a human readable attribute. For instance if you have a partition key named "pk" that for items that represent users stores their userid, then there should also be an attribute named userid.
  • When creating models for item types that will be stored in the database the developer should only have to worry about their access patterns in terms of the human readable attributes, not be in the weeds of the index design of the table. Mapping items to indexes should happen in code, not in the table definition itself
  • Table and Global Secondary indexes should always define a sortkey. There is no reason not to. It's better to have it in cases where you don't need it than to need it and not have it.

Dynamojo is built on top of Pydantic with some bells and whistles:

  • put, update, delete, and query db objects
  • Dynamically map attributes to the index of your choice. EG: attribute "userId" automatically populates the partition key named "pk"
  • Dynamically join attributes into another using a delimiter. For instance create a field that is <userid>~<date>~<action> to use as a sort key for fast queries
  • Mutate attributes when set
  • Create models that subclass other models. A common pattern is to define a base class for your project that has a baseline of methods that you will need other than db operations. Different item types would then be created as models that are subclasses from the base class. See test.py
  • Flag attributes as immutable so they can't be modified once set
  • Use all of the features of put_item(), query(), delete(), and update() that you normally could with boto3.client("dynamodb")

Limitations:

  • Dynamojo doesn't do scans because scans are dumb. I will die on the hill of defending that statement.
  • If you have so much data that replicating indexed data into human readable columns is too expensive then this library may not be for you. But if you have that much data you should have a staff of engineers that can write your own library.

See test.py for examples

This library is very opinionated about how the table's indexes should be structured. Below is Terraform that shows the correct way to set up the table. Index keys are never referenced directly when using the table. Rely on IndexMap for that. Since LSI's can only be created at table creation time, and all indexes cost nothing if not used, we go ahead and create all of the indexes that AWS will allow us to when the table is created.

resource "aws_dynamodb_table" "test_table" {
  name         = "test-dynamojo"
  hash_key     = "pk"
  range_key    = "sk"
  billing_mode = "PAY_PER_REQUEST"

  # LSI attributes
  dynamic "attribute" {
    for_each = range(5)

    content {
      name = "lsi${attribute.value}_sk"
      type = "S"
    }
  }

  # GSI pk attributes
  dynamic "attribute" {
    for_each = range(20)

    content {
      name = "gsi${attribute.value}_pk"
      type = "S"
    }
  }

  # GSI sk attributes
  dynamic "attribute" {
    for_each = range(20)

    content {
      name = "gsi${attribute.value}_sk"
      type = "S"
    }
  }

  attribute {
    name = "pk"
    type = "S"
  }

  attribute {
    name = "sk"
    type = "S"
  }

  # GSI's
  dynamic "global_secondary_index" {
    for_each = range(20)

    content {
      name            = "gsi${global_secondary_index.value}"
      hash_key        = "gsi${global_secondary_index.value}_pk"
      range_key       = "gsi${global_secondary_index.value}_sk"
      projection_type = "ALL"
    }
  }

  # LSI's
  dynamic "local_secondary_index" {
    for_each = range(5)

    content {
      name            = "lsi${local_secondary_index.value}"
      range_key       = "lsi${local_secondary_index.value}_sk"
      projection_type = "ALL"
    }
  }
}

Download files

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

Source Distribution

dynamojo-2.0.0.tar.gz (20.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dynamojo-2.0.0-py3-none-any.whl (20.6 kB view details)

Uploaded Python 3

File details

Details for the file dynamojo-2.0.0.tar.gz.

File metadata

  • Download URL: dynamojo-2.0.0.tar.gz
  • Upload date:
  • Size: 20.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.0.1 CPython/3.13.2 Darwin/25.6.0

File hashes

Hashes for dynamojo-2.0.0.tar.gz
Algorithm Hash digest
SHA256 33686e790b7262c39315ccba80803e24dc841622b72593a407f8baef3407a091
MD5 4089295132abb44f233e1069f67a1963
BLAKE2b-256 f9290be007161b16a3ee08b8d46cc8c21c0e87a76b6550bc1d866d8901af747c

See more details on using hashes here.

File details

Details for the file dynamojo-2.0.0-py3-none-any.whl.

File metadata

  • Download URL: dynamojo-2.0.0-py3-none-any.whl
  • Upload date:
  • Size: 20.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.0.1 CPython/3.13.2 Darwin/25.6.0

File hashes

Hashes for dynamojo-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ffa9308a53120b21aa78f0f71c4831e82a4192e1d14a68ff30603882bd1f0354
MD5 72e9ae53c855199ff95c6cd4689ea7a8
BLAKE2b-256 849955bdde3b9c1352ef6598a6a3f45c266d5ef1008fed8a4cb479b95c22ac31

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

2.0.0 This release

2 files

1.7.3

2 files

1.7.2

2 files

1.7.1

2 files

1.7.0

2 files

1.6.0

2 files

1.5.0

2 files

1.3.0

2 files

1.2.0

2 files

1.1.6

2 files

1.1.5

2 files

1.1.4

2 files

1.1.3

2 files

1.1.2

2 files

1.1.1

2 files

1.1.0

2 files

1.0.4

2 files

1.0.3

2 files

1.0.2

2 files

1.0.1

2 files

1.0.0

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

3 files

0.1.0

1 file

0.0.3

1 file

0.0.2

1 file

0.0.1

1 file

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page