Code notes & cookbook
AWS DynamoDB
Python boto3 scripts
- • How to create a boto3 DynamoDB client
- • How to create a boto3 DynamoDB resource
- • How to create a table for DynamoDB in Python boto3
- • How to add a GSI on a DynamoDB table in Python boto3
- • How to populate an existent DynamoDB table with JSON data in Python boto3
- • How to get item in DynamoDB with Python boto3 client
- • How to get item in DynamoDB with Python boto3 resource (and store response into a Pandas DF)
- • How to get item in DynamoDB with Python boto3 client and a table index
- • How to query data from DynamoDB with Python boto3
- • How scan an entire DynamoDB table with Python boto3 client
- • How to put (insert) data to DynamoDB with Python boto3
- • How to update data of a DynamoDB table with Python boto3
- • How to delete data from a DynamoDB table with Python boto3
- • How to drop a DynamoDB table with Python boto3
- • How to get the list of DynamoDB table with Python boto3