├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── LICENSE ├── README.rst ├── dev-requirements.txt ├── postgres_copy └── __init__.py ├── setup.cfg ├── setup.py ├── tasks.py └── tests └── test_export.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/sqlalchemy-postgres-copy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/sqlalchemy-postgres-copy/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/sqlalchemy-postgres-copy/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/sqlalchemy-postgres-copy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/sqlalchemy-postgres-copy/HEAD/README.rst -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | flake8 3 | 4 | invoke 5 | twine 6 | wheel 7 | -------------------------------------------------------------------------------- /postgres_copy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/sqlalchemy-postgres-copy/HEAD/postgres_copy/__init__.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/sqlalchemy-postgres-copy/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/sqlalchemy-postgres-copy/HEAD/setup.py -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/sqlalchemy-postgres-copy/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/test_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/sqlalchemy-postgres-copy/HEAD/tests/test_export.py --------------------------------------------------------------------------------