Last active
November 16, 2018 13:26
-
-
Save nimboya/bd501785ab4de974fcc75c857a187230 to your computer and use it in GitHub Desktop.
DynamoDB Local
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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