├── .gitignore ├── LICENSE ├── README.rst ├── django-redshift ├── __init__.py ├── base.py ├── client.py ├── creation.py ├── introspection.py ├── operations.py └── version.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *pyc 2 | *swp 3 | .DS_Store 4 | dist 5 | *.egg-info 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarymatt/django-redshift/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarymatt/django-redshift/HEAD/README.rst -------------------------------------------------------------------------------- /django-redshift/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-redshift/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarymatt/django-redshift/HEAD/django-redshift/base.py -------------------------------------------------------------------------------- /django-redshift/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarymatt/django-redshift/HEAD/django-redshift/client.py -------------------------------------------------------------------------------- /django-redshift/creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarymatt/django-redshift/HEAD/django-redshift/creation.py -------------------------------------------------------------------------------- /django-redshift/introspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarymatt/django-redshift/HEAD/django-redshift/introspection.py -------------------------------------------------------------------------------- /django-redshift/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarymatt/django-redshift/HEAD/django-redshift/operations.py -------------------------------------------------------------------------------- /django-redshift/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarymatt/django-redshift/HEAD/django-redshift/version.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarymatt/django-redshift/HEAD/setup.py --------------------------------------------------------------------------------