Posts for: #Python

Imports and Class Instances

In Python, if you return a class instance, that instance has everything a consumer needs to use it. So for instance, if I pass a PynamoDB model object (indicating a document in…

[Read more]

PynamoDB Arguments

In PynamoDB, when running a DynamoDB query, the first two positional arguments are the hash key (primary key) and filters for the range key (sort key). To do a filter…

[Read more]