Metadata-Version: 1.1
Name: dump
Version: 0.0.5
Summary: Wrapper around psql and pg_dump to make it easier to backup/restore a PostgreSQL database
Home-page: http://github.com/jaymon/dump
Author: Jay Marcyes
Author-email: jay@marcyes.com
License: MIT
Description: Dump
        ====
        
        Python wrapper around psql and pg\_dump to make it easier to
        backup/restore a PostgreSQL database.
        
        Backup
        ------
        
        You backup per table:
        
        ::
        
            $ dump backup --dbname=... --username=...  --password=... --dir=/some/base/path table1 table2 ...
        
        Restore
        -------
        
        You can restore the entire backup directory:
        
        ::
        
            $ dump restore --dbname=... --username=...  --password=... --dir=/some/base/path
        
        Install
        -------
        
        Use pip:
        
        ::
        
            $ pip install dump
        
        to install the latest and greatest:
        
        ::
        
            $ pip install --upgrade git+https://github.com/Jaymon/dump#egg=dump
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Database
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
