Metadata-Version: 2.1
Name: sqlalchemy-pymssql-sybase
Version: 0.0.1.dev0
Summary: SAP ASE (Sybase) Connector for SQLAlchemy using PyMsSql
Home-page: https://github.com/gordthompson/sqlalchemy-pymssql-sybase
Author: Giovany Vega
Author-email: aleph.omega@gmail.com
License: MIT
Project-URL: Documentation, https://github.com/gordthompson/sqlalchemy-pymssql-sybase/wiki
Project-URL: Source, https://github.com/gordthompson/sqlalchemy-pymssql-sybase
Project-URL: Tracker, https://github.com/gordthompson/sqlalchemy-pymssql-sybase/issues
Keywords: ASE SAP SQLAlchemy Sybase PyMSSql
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Database :: Front-Ends
Classifier: Operating System :: OS Independent
License-File: LICENSE
Requires-Dist: pymssql>=2.2.8
Requires-Dist: SQLAlchemy>=2.0.0

sqlalchemy-pymssql-sybase
=========================

.. image:: https://img.shields.io/pypi/dm/sqlalchemy-pymssql-sybase.svg
        :target: https://pypi.org/project/sqlalchemy-pymssql-sybase/

SAP ASE (Sybase) dialect for SQLAlchemy using PyMsSql.

The latest version of this dialect requires SQLAlchemy 2.0 or later and pymssql 2.2.8 or later

Overview
--------

This is a very  thin wrap around the SQLAlchemy's mssql+pymysql dialect
repurposed for connecting to sybase databases.

Database Version Support
------------------------

This dialect is tested against SAP ASE version 16.
Current support is very tiny

Installing
----------

SQLAlchemy and pymssql are specified as requirements so ``pip`` will install
them if they are not already in place. To install, just::

    pip install sqlalchemy-pymssql-sybase

Getting Started
---------------

To register the dialect, import the sqlalchemy_pymssql_sybase module somewhere in your app.
Then use sqlalchemy as usual::

    import sqlalchemy_pymssql_sybase
    from sqlalchemy import create_engine
    engine = create_engine("sybase+pymssql://user:password@host/database")


The SQLAlchemy Project
======================

sqlalchemy-pymssql-sybase is affiliated with the `SQLAlchemy Project <https://www.sqlalchemy.org>`_ and
adheres to the same standards and conventions as the core project.

Development / Bug reporting / Pull requests
-------------------------------------------

Please refer to the
`SQLAlchemy Community Guide <https://www.sqlalchemy.org/develop.html>`_ for
guidelines on coding and participating in this project.

Code of Conduct
_______________

Above all, SQLAlchemy places great emphasis on polite, thoughtful, and
constructive communication between users and developers.
Please see the current Code of Conduct at
`Code of Conduct <https://www.sqlalchemy.org/codeofconduct.html>`_.

License
=======

sqlalchemy-pymssql-sybase is distributed under the `MIT license
<https://opensource.org/licenses/MIT>`_.
