sqlalchemy-monetdb
sqlalchemy-monetdb copied to clipboard
A SQLAlchemy dialect for MonetDB
MonetDB dialect for SQLAlchemy
This is the MonetDB dialect driver for SQLAlchemy. It has support for Python 3.7+ and PyPy. It supports SQLalchemy 1.3 and 1.4.
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
- http://www.sqlalchemy.org/
- http://www.monetdb.org/