Skip to content

Instantly share code, notes, and snippets.

@butiase2015
butiase2015 / export.py
Created March 17, 2022 09:02 — forked from ngnmtl/export.py
Export / import AWS dynamodb table from json file with correct data types using python
from __future__ import print_function # Python 2/3 compatibility
import json
import boto3
# AWS_ACCESS = ""
# AWS_SECRET = ""
AWS_REGION = "eu-west-3"
TABLE_NAME = "users"
client = boto3.client(