Metadata-Version: 2.1
Name: dynamodb-backup
Version: 1.0.0
Summary: Backup a DynamoDB table to an Avro container
Home-page: https://github.com/gmr/dynamodb-backup
Author: Gavin M. Roy
Author-email: gavinmroy@gmail.com
License: BSD 3-Clause License
Project-URL: Bug Tracker, https://github.com/gmr/dynamodb-backup/issues
Project-URL: Source Code, https://github.com/gmr/dynamodb-backup/
Description: dynamodb-backup
        ===============
        Backup a `DynamoDB <https://aws.amazon.com/dynamodb/>`_ table to an
        `Avro <http://avro.apache.org>`_ container.
        
        Currently, only full table backups are supported.
        
        |Version|
        
        Installation
        ------------
        ``dynamodb-backup`` is available on the
        `Python Package Index <https://pypi.python.org>`_:
        
        .. code:: bash
        
            pip install dynamodb-backup
        
        dynamodb-backup optionally supports the `snappy <https://google.github.io/snappy/>`_
        codec for compression if the Python snappy package is installed. This can be
        installed using the pip extras install:
        
        .. code:: bash
        
            pip install dynamodb-backup[snappy]
        
        Usage
        -----
        ::
        
           dynamodb-backup --help
           usage: dynamodb-backup [-h] [-c {snappy,none,deflate}] [-s] [-v]
                                  schema table destination
        
           Backup a DynamoDB table to an Avro Container
        
           positional arguments:
             schema                Avro Schema to use
             table                 DynamoDB table name
             destination           Destination file path for the backup file
        
           optional arguments:
             -h, --help            show this help message and exit
             -c {snappy,none,deflate}, --codec {snappy,none,deflate}
                                   Compression Codec. Default: deflate
             -s, --skip-validation
                                   Do not validate records against the avro schema
             -v, --verbose         Verbose logging output
        
        .. |Version| image:: https://img.shields.io/pypi/v/dynamodb-backup.svg?
           :target: https://pypi.python.org/pypi/dynamodb-backup
        
Keywords: dynamodb,avro,backup
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Environment :: No Input/Output (Daemon)
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: BSD
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/x-rst; charset=UTF-8
Provides-Extra: test
Provides-Extra: snappy
