在DynamoDB中执行读操作通常有两种方式:
示例代码:
import boto3
# 创建DynamoDB客户端
dynamodb = boto3.client('dynamodb')
# 指定表名和主键值
response = dynamodb.get_item(
TableName='MyTable',
Key={
'id': {'S': '123'}
}
)
item = response.get('Item')
if item:
print(item)
else:
print('Item not found')
示例代码:
import boto3
# 创建DynamoDB客户端
dynamodb = boto3.client('dynamodb')
# 指定表名和条件表达式
response = dynamodb.query(
TableName='MyTable',
KeyConditionExpression='id = :val',
ExpressionAttributeValues={
':val': {'S': '123'}
}
)
items = response.get('Items')
if items:
for item in items:
print(item)
else:
print('Items not found')
以上是在Python中使用boto3 SDK执行DynamoDB读操作的示例代码,你可以根据具体情况调整表名、主键值和条件表达式来执行不同的读操作。