Skip to content

Instantly share code, notes, and snippets.

View mrbitsdcf's full-sized avatar

MrBiTs mrbitsdcf

View GitHub Profile
@mrbitsdcf
mrbitsdcf / export.py
Created January 7, 2023 18:00 — 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(