Skip to content

MonetDB/sqlalchemy-monetdb

 
 

Repository files navigation

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

About

A SQLAlchemy dialect for MonetDB

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 98.8%
  • Other 1.2%