Skip to content

c-py/dynamodb_doctor

Repository files navigation

DynamoDB Doctor

The DynamoDB doctor helps to model common relationships and access patterns in DynamoDB.

Features

Feature Implemented
Create Tables
Create Models

Usage

Creating a Table

class ExampleTable(Table):
    ...

table = ExampleTable()
table.create()

Specifying Table Name

class ExampleTable(Table):
    name = "example_table"

Creating a Model

class ExampleTable(Table):
    ...

table = ExampleTable()

class ExampleModel(Model):
    name = String()
    age = Int()

    class Meta:
        table = table

Contributing

Installation

make install

Testing

make test

About

DynamoDB Doctor

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published