所以下面的代码有效
import boto3
dynamodb = boto3.resource('dynamodb', region_name='us-east-1')
table = dynamodb.Table('mytest')
myid = "123"
mylocation = "paris"
response = table.put_item(
Item={
'myid': myid,
'mylocation': mylocation
}
)
print("PutItem succeeded:")
但是我如何在运行时传递 json 而不是硬编码 myid 和 mylocation。我想将“{'myid':'123','mylocation:'paris'}”之类的内容作为 json 字符串传递给 put_item,Items。在 dynamodb 的 boto3 中这可能吗?