This post is the continuation from the previous post [AWS -Python] DynamoDB with Boto3, which deals with the basic DynamoDB operations.
Continue reading “[AWS -Python] DynamoDB Batch and Paging with Boto3”Tag Archives: Boto3
[AWS -Python] DynamoDB with Boto3
Let’s work with DynamoDB with the Python Boto3 library.
We can
- list tables
- retrieve table information including keys and indexes
- create a table
- read, write, and delete items
- delete a table
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
Continue reading “[AWS -Python] DynamoDB with Boto3”[AWS – Python] S3 with Boto 3
Here are examples of accessing S3 with Boto 3.
Continue reading “[AWS – Python] S3 with Boto 3”[AWS Python] Configuration
You can access Amazon web services through the Management Console, AWS CLI, or AWS SDK. Boto3 is the AWS SDK for python.
Continue reading “[AWS Python] Configuration”