Skip to content

jvwinandy/sqlalchemy-monetdb

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

113 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MonetDB dialect for SQLAlchemy

This is the MonetDB dialect driver for SQLAlchemy. It has support for Python 2.7, 3.3+ and even PyPy. It supports SQLalchemy 1.0, 1.1 and 1.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:///demo:', echo=True)

MonetDB Lite (experimental)

We now have experimental support for MonetDB Lite! Note that this is experimental, and will probably break.

First you need to manually install MonetDB Lite: https://github.com/hannesmuehleisen/MonetDBLite-Python

To connect to a MonetDBLite database use this syntax:

from sqlalchemy import create_engine
engine = create_engine('monetdb+lite:////tmp/monetdb_lite')

More info

Development

https://travis-ci.org/gijzelaerr/sqlalchemy-monetdb.png?branch=master

About

A SQLAlchemy dialect for MonetDB

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 98.5%
  • Shell 1.5%