Metadata-Version: 2.1
Name: sqlalchemy_monetdb
Version: 2.0.0
Summary: SQLAlchemy dialect for MonetDB
Home-page: https://github.com/MonetDB/sqlalchemy-monetdb
Author: Gijs Molenaar
Author-email: gijsmolenaar@gmail.com
License: MIT
Keywords: MonetDB,SQLALchemy
Platform: UNKNOWN
Classifier: Topic :: Database
Classifier: Topic :: Database :: Front-Ends
Classifier: Topic :: Database :: Database Engines/Servers
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.8
Provides-Extra: test
License-File: LICENSE

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
---------

 * http://www.sqlalchemy.org/
 * http://www.monetdb.org/


