Skip to main content

DynamORM is a Python object & relation mapping library for Amazon's DynamoDB service.

Project description

DynamORM

https://img.shields.io/travis/NerdWalletOSS/dynamorm.svg https://img.shields.io/codecov/c/github/NerdWalletOSS/dynamorm.svg Latest PyPI version Supported Python Versions

This package is a work in progress – Feedback / Suggestions / Etc welcomed!

Python + DynamoDB ♡

DynamORM (pronounced Dynamo-R-M) is a Python object & relation mapping library for Amazon’s DynamoDB service.

The project has two goals:

  1. Abstract away the interaction with the underlying DynamoDB libraries. Python access to the DynamoDB service has evolved quickly, from Dynamo v1 in boto to Dynamo v2 in boto and then the new resource model in boto3. By providing a consistent interface that will feel familiar to users of other Python ORMs (SQLAlchemy, Django, Peewee, etc) means that we can always provide best-practices for queries and take advantages of new features without needing to refactor any application logic.

  2. Delegate schema validation and serialization to more focused libraries. Building “ORM” semantics is “easy”, doing data validation and serialization is not. We support both Marshmallow and Schematics for building your object schemas. You can take advantage of the full power of these libraries as they are transparently exposed in your code.

Supported Schema Validation Libraries

Example

import datetime

from dynamorm import DynaModel, GlobalIndex, ProjectAll

# In this example we'll use Marshmallow, but you can also use Schematics too!
# You can see that you have to import the schema library yourself, it is not abstracted at all
from marshmallow import fields

# Our objects are defined as DynaModel classes
class Book(DynaModel):
    # Define our DynamoDB properties
    class Table:
        name = 'prod-books'
        hash_key = 'isbn'
        read = 25
        write = 5

    class ByAuthor(GlobalIndex):
        name = 'by-author'
        hash_key = 'author'
        read = 25
        write = 5
        projection = ProjectAll()

    # Define our data schema, each property here will become a property on instances of the Book class
    class Schema:
        isbn = fields.String(validate=validate_isbn)
        title = fields.String()
        author = fields.String()
        publisher = fields.String()

        # NOTE: Marshmallow uses the `missing` keyword during deserialization, which occurs when we save
        # an object to Dynamo and the attr has no value, versus the `default` keyword, which is used when
        # we load a document from Dynamo and the value doesn't exist or is null.
        year = fields.Number(missing=lambda: datetime.datetime.utcnow().year)


# Store new documents directly from dictionaries
Book.put({
    "isbn": "12345678910",
    "title": "Foo",
    "author": "Mr. Bar",
    "publisher": "Publishorama"
})

# Work with the classes as objects.  You can pass attributes from the schema to the constructor
foo = Book(isbn="12345678910", title="Foo", author="Mr. Bar",
           publisher="Publishorama")
foo.save()

# Or assign attributes
foo = Book()
foo.isbn = "12345678910"
foo.title = "Foo"
foo.author = "Mr. Bar"
foo.publisher = "Publishorama"

# In all cases they go through Schema validation, calls to .put or .save can result in ValidationError
foo.save()

# You can then fetch, query and scan your tables.
# Get on the hash key, and/or range key
book = Book.get(isbn="12345678910")

# Update items, with conditions
# Here our condition ensures we don't have a race condition where someone else updates the title first
book.update(title='Corrected Foo', conditions=(title=book.title,))

# Query based on the keys
Book.query(isbn__begins_with="12345")

# Scan based on attributes
Book.scan(author="Mr. Bar")
Book.scan(author__ne="Mr. Bar")

# Query based on indexes
Book.ByAuthor.query(author="Mr. Bar")

Documentation

Full documentation is built from the sources each build and can be found online at:

https://nerdwalletoss.github.io/dynamorm/

The tests/ also contain the most complete documentation on how to actually use the library, so you are encouraged to read through them to really familiarize yourself with some of the more advanced concepts and use cases.

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

dynamorm-0.11.0.tar.gz (28.5 kB view details)

Uploaded Source

Built Distribution

dynamorm-0.11.0-py2.py3-none-any.whl (30.9 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file dynamorm-0.11.0.tar.gz.

File metadata

  • Download URL: dynamorm-0.11.0.tar.gz
  • Upload date:
  • Size: 28.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.1

File hashes

Hashes for dynamorm-0.11.0.tar.gz
Algorithm Hash digest
SHA256 6ad48124fcdb90f22beac43f45a5446c8282668777591c26b9cb15c9561c81ac
MD5 a6254393ede05516f5efe1e06a110519
BLAKE2b-256 72fa82ff91343afb8d40a0452d045c31e8d31ce063060625af3ccd746205811d

See more details on using hashes here.

File details

Details for the file dynamorm-0.11.0-py2.py3-none-any.whl.

File metadata

  • Download URL: dynamorm-0.11.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 30.9 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.1

File hashes

Hashes for dynamorm-0.11.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 94e1ead390718cff38519c5bafb02d35b077c949544894309fd841bcd097381e
MD5 23a080e453fb365b289dda8bc5cc4d10
BLAKE2b-256 e925780eced1add0419cfbf73237ba8fce6dc70fc07e984820cd1867fe2b7948

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