cln_m4rie
Results
1
comments of
cln_m4rie
@bblommers This way ```python import boto3 from moto import mock_dynamodb2 def run(): mock_dynamodb = mock_dynamodb2() mock_dynamodb.start() dynamodb = boto3.resource("dynamodb") dynamodb.create_table( TableName="example_table", KeySchema=[{"AttributeName": "id", "KeyType": "HASH"}], AttributeDefinitions=[ {"AttributeName": "id", "AttributeType": "S"},...