Skip to content

Instantly share code, notes, and snippets.

@nimboya
Last active November 16, 2018 13:26
Show Gist options
  • Save nimboya/bd501785ab4de974fcc75c857a187230 to your computer and use it in GitHub Desktop.
Save nimboya/bd501785ab4de974fcc75c857a187230 to your computer and use it in GitHub Desktop.
DynamoDB Local
import boto3
ddb = boto3.client('dynamodb', endpoint_url='http://localhost:8000/')
response = ddb.list_tables()
print(response)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment