Skip to content

eddycurry/sqlalchemy-redshift

This branch is 16 commits behind sqlalchemy-redshift/sqlalchemy-redshift:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e2f033f · Jul 27, 2022
Mar 7, 2016
Nov 2, 2021
Oct 23, 2015
Jul 27, 2022
May 11, 2022
Jul 18, 2019
Jul 25, 2022
Jul 27, 2022
Aug 6, 2021
Apr 15, 2013
Sep 25, 2017
Nov 2, 2021
May 4, 2017
May 11, 2022
May 11, 2015
Jul 27, 2022
May 11, 2022

Repository files navigation

sqlalchemy-redshift

Amazon Redshift dialect for SQLAlchemy.

Travis CI build status

Installation

The package is available on PyPI:

pip install sqlalchemy-redshift

Warning

This dialect requires either redshift_connector or psycopg2 to work properly. It does not provide it as required, but relies on you to select the distribution you need:

  • psycopg2 - standard distribution of psycopg2, requires compilation so few system dependencies are required for it
  • psycopg2-binary - already compiled distribution (no system dependencies are required)
  • psycopg2cffi - pypy compatible version

See Psycopg2's binary install docs for more context on choosing a distribution.

Usage

The DSN format is similar to that of regular Postgres:

>>> import sqlalchemy as sa
>>> sa.create_engine('redshift+psycopg2://username@host.amazonaws.com:5439/database')
Engine(redshift+psycopg2://username@host.amazonaws.com:5439/database)

See the RedshiftDDLCompiler documentation for details on Redshift-specific features the dialect supports.

Releasing

To perform a release, you will need to be an admin for the project on GitHub and on PyPI. Contact the maintainers if you need that access.

You will need to have a ~/.pypirc with your PyPI credentials and also the following settings:

[zest.releaser]
create-wheels = yes

To perform a release, run the following:

python3.6 -m venv ~/.virtualenvs/dist
workon dist
pip install -U pip setuptools wheel
pip install -U tox zest.releaser
fullrelease  # follow prompts, use semver ish with versions.

The releaser will handle updating version data on the package and in CHANGES.rst along with tagging the repo and uploading to PyPI.

About

Amazon Redshift SQLAlchemy Dialect

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.7%
  • Shell 0.3%