Metadata-Version: 1.1
Name: export-dynamodb
Version: 1.0.4.7
Summary: A cli to export Amazon DynamoDb
Home-page: https://github.com/travistrle/export-dynamodb.git
Author: Truong Le
Author-email: travistrle@gmail.com
License: GPLv3
Download-URL: https://github.com/travistrle/export-dynamodb/archive/1.0.2.tar.gz
Description: Export DynamoDb Cli
        
        Overview
        ========
        export-dynamodb cli scan sequentially through all your dynamodb items. it supports to export to
        either csv or json format.
        
        Prerequisite
        ============
        * You must have at least Python 3.6 to run export-dynamodb cli tool
        * export-dynamodb does not support to authenticate with AWS. You must be able to set
        **AWS_ACCESS_KEY_ID** and **AWS_SECRET_ACCESS_KEY** to your environment variable.
        
        .. code-block:: bash
        
            # Install export-dynamodb
            $ pip install export-dynamodb
        
            # List of all export-dynamodb cli options.
            $ export-dynamodb --help
        
            # Export table and write to TABLE_NAME.csv file
            $ export-dynamodb -t TABLE_NAME -f csv
        
            # Export table and write to output.csv file
            $ export-dynamodb -t TABLE_NAME -f csv -o output.csv
        
Keywords: aws,dynamodb,export
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: System Administrators
Classifier: Topic :: Database
Classifier: Programming Language :: Python :: 3.6
