MonetDB / sqlalchemy-monetdb

A SQLAlchemy dialect for MonetDB
MIT License
41 stars 17 forks source link

MonetDB dialect for SQLAlchemy

This is the MonetDB dialect driver for SQLAlchemy 2.. It has support for Python 3.8+ and PyPy. It supports SQLalchemy 2..

Installation

To install this dialect run::

$ pip install sqlalchemy_monetdb

or from the source folder::

$ pip install .

Usage

To start using this dialect::

from sqlalchemy import create_engine
engine = create_engine('monetdb://monetdb:monetdb@localhost:50000/demo', echo=True)

Alternatively, you can also specify the driver::

engine = create_engine('monetdb+pymonetdb://monetdb:monetdb@localhost:50000/demo', echo=True)

More info