Skip to content

Instantly share code, notes, and snippets.

@zaireali649
Last active July 15, 2023 19:43
Show Gist options
  • Save zaireali649/0ec6b90155120cf508223788b7b86efc to your computer and use it in GitHub Desktop.
Save zaireali649/0ec6b90155120cf508223788b7b86efc to your computer and use it in GitHub Desktop.
Connect to DynamoDB using boto3
import boto3
# replace the keys below
dynamodb = boto3.client(
'dynamodb',
aws_access_key_id='*****',
aws_secret_access_key='*****',
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment