Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 580 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 580 Bytes

export_dynamodb

A cli to export dynamodb.

Key Features

  • Scan table in single or parallel thread.
  • Output file can be json or csv.
  • Get list of tables from yaml file.

How to use

Getting started

# Install virtual environment
$ pip3 install virtualenv 
$ virtualenv -p python3 venv
$ source venv/bin/activate

# Install dependencies
$ pip install -r requirements.txt

# if you want to exit from development environment, use deactivate command
$ deactivate