“Holen Sie sich Daten von DynamoDB mit Boto3 ab” Code-Antworten

Holen Sie sich Item DynamoDB Boto3

def get_movie(title, year, dynamodb=None):
    if not dynamodb:
        dynamodb = boto3.resource('dynamodb', endpoint_url="http://localhost:8000")

    table = dynamodb.Table('Movies')

    try:
        response = table.get_item(Key={'year': year, 'title': title})
    except ClientError as e:
        print(e.response['Error']['Message'])
    else:
        return response['Item']
Serhii

Holen Sie sich Daten von DynamoDB mit Boto3 ab

import boto3

db = boto3.resource('dynamodb')
table = db.Table('Register')#Replace register with name of your table

#Adding items to your table 
# table.put_item(
#     Item = {
#         'Name':'Kim',
#         'Surname':'Ndlovu' 
#     }
# )

#Getting items from the table
response = table.scan()['Items']
print (response)
Hastings Keith

Ähnliche Antworten wie “Holen Sie sich Daten von DynamoDB mit Boto3 ab”

Fragen ähnlich wie “Holen Sie sich Daten von DynamoDB mit Boto3 ab”

Weitere verwandte Antworten zu “Holen Sie sich Daten von DynamoDB mit Boto3 ab” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen