mirror of
https://github.com/jaypyles/Scraperr.git
synced 2025-12-12 02:35:43 +00:00
9 lines
161 B
Python
9 lines
161 B
Python
# PDM
|
|
import boto3
|
|
|
|
|
|
def test_dyanmo():
|
|
dynamodb = boto3.resource("dynamodb", region_name="us-west-2")
|
|
table = dynamodb.Table("scrape")
|
|
print(table)
|