├── .gitignore ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── RELEASE.md ├── pandas_redshift ├── __init__.py ├── core.py └── redshift_reserve_words.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agawronski/pandas_redshift/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agawronski/pandas_redshift/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agawronski/pandas_redshift/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agawronski/pandas_redshift/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agawronski/pandas_redshift/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agawronski/pandas_redshift/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agawronski/pandas_redshift/HEAD/RELEASE.md -------------------------------------------------------------------------------- /pandas_redshift/__init__.py: -------------------------------------------------------------------------------- 1 | from pandas_redshift.core import * 2 | -------------------------------------------------------------------------------- /pandas_redshift/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agawronski/pandas_redshift/HEAD/pandas_redshift/core.py -------------------------------------------------------------------------------- /pandas_redshift/redshift_reserve_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agawronski/pandas_redshift/HEAD/pandas_redshift/redshift_reserve_words.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agawronski/pandas_redshift/HEAD/setup.py --------------------------------------------------------------------------------