This is the MonetDB dialect driver for SQLAlchemy 2.. It has support for Python 3.8+ and PyPy. It supports SQLalchemy 2..
To install this dialect run::
$ pip install sqlalchemy_monetdb
or from the source folder::
$ pip install .
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)