A compiler for DynamoDB conditional expressions that returns an executable truthy function
Project description
dynamodb-ce
Installation
pip install dynamodb-ce
Overview
dynamodb-ce
is a compiler that can compile DynamoDB Conditional Expressions into executable Python truthy functions that evaluate either a Python dict
or a DynamoDB item (with DynamoDB typing).
Setting up the parser requires setting expression attribute names and values, just as they would be set when calling DynamoDB. Expression attribute values can be represented either using Python types or DynamoDB types.
Compilation is done once per (expression, attribute names, attribute values) tuple and cached. The truthy function that is the result of the compilation is designed to be extremely fast.
Lexing and parsing courtesy of SLY.
Usage
Using DynamoDB types:
from dynamodb_ce import CeParser
parser = CeParser(
expression_attribute_names={"#path": "body"},
expression_attribute_values={':string1': {'S': "a"}, ':string2': {'S': "b"}, ':number1': {'N': 1}, ':number2': {'N': 2}}
)
item = {"body": {"M": {"number1": {"N": 1}, "number2": {"N": 2}, "string1": {"S": "a"}, "string2": {"S": "b"}}}}
parser.evaluate("#path.string2 > #path.string1", item)
Using Python types
from dynamodb_ce import CeParser
parser = CeParser(
expression_attribute_names={"#path": "body"},
expression_attribute_values={':string1': "a", ':string2': "b", ':number1': 1, ':number2': 2}
)
item = {"body": {"number1": 1, "number2": 2, "string1": "a", "string2": "b"}}
parser.evaluate("#path.string2 > #path.string1", item)
Using the parsed (compiled) result directly
from dynamodb_ce import CeParser
parser = CeParser(
expression_attribute_names={"#path": "body"},
expression_attribute_values={':string1': "a", ':string2': "b", ':number1': 1, ':number2': 2}
)
item = {"body": {"number1": 1, "number2": 2, "string1": "a", "string2": "b"}}
truthy = parser.parse("#path.string2 > #path.string1")
truthy(item)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file dynamodb-ce-0.0.5.tar.gz
.
File metadata
- Download URL: dynamodb-ce-0.0.5.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6e6464208ca7f12bfede5e76950ec7fb417867c4a23e71018a03b6cc45c26b0f |
|
MD5 | 1e7e248b84a050c60feb97feaaf1a4ff |
|
BLAKE2b-256 | 42a613f8054caf68bef149643569407aa7d6e09fa372fc3eb69328e9a0ba468d |