Metadata-Version: 2.1
Name: denodo-sqlalchemy
Version: 20220419
Summary: Denodo Dialect for SQLAlchemy
Home-page: https://www.denodo.com
Download-URL: https://www.denodo.com
Author: Denodo Research Labs
Author-email: research.labs@denodo.com
License: MIT license
Keywords: Denodo db database
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Database
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Provides-Extra: development
License-File: LICENSE
License-File: NOTICE.txt
License-File: AUTHORS
License-File: AUTHORS-denodo

`Denodo Dialect for SQLAlchemy`
********************************************************************************

Project Description
================================================================================

This package includes the Denodo Dialect for SQLAlchemy, which offers an easy way to connect to Denodo databases from SQLAlchemy https://www.sqlalchemy.org/

Denodo documentation and software resources are available at https://community.denodo.com

This dialect supports SQLAlchemy v1.4 and higher and Denodo 7.0 and higher.

Pre-requisites
================================================================================

This dialect requires the following Python modules:
   * SQLAlchemy version 1.4 or higher
   * psycopg2 version 2.7 or higher.
   
However, these dependencies do not need to be installed because when you install Denodo Dialect for SQLAlchemy both should be installed automatically.

Alternatively, these packages can be manually installed by means of:

    .. code-block::

        pip install sqlalchemy
        pip install psycopg2

Important: note also that psycopg2 has its own requirements for installation which need to be satisfied: https://www.psycopg.org/docs/install.html#prerequisites

Installation
================================================================================

The Denodo SQLAlchemy package can be installed from the public PyPI repository using :code:`pip`:

    .. code-block::

        pip install --upgrade denodo-sqlalchemy

:code:`pip` automatically installs all required modules.

Usage
================================================================================

To connect to Denodo VDP Server with SQLAlchemy, the following URL pattern can be used:

    .. code-block::

        denodo://<username>:<password>@<host>:<odbcport>/<database>

