# sqlalchemy-redshift **Repository Path**: mirrors_Shopify/sqlalchemy-redshift ## Basic Information - **Project Name**: sqlalchemy-redshift - **Description**: Amazon Redshift SQLAlchemy Dialect - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-01-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README sqlalchemy-redshift =================== Amazon Redshift dialect for SQLAlchemy. .. image:: https://travis-ci.org/sqlalchemy-redshift/sqlalchemy-redshift.svg?branch=master :target: https://travis-ci.org/sqlalchemy-redshift/sqlalchemy-redshift :alt: Travis CI build status Installation ------------ The package is available on PyPI:: pip install sqlalchemy-redshift 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.