Metadata-Version: 2.0
Name: pyhytechdb
Version: 1.0.1
Summary: pyhytechdb package is a set of DBMS HyTech(https://hytechdb.ru/)
Home-page: https://github.com/a-osipov/pyhytechdb
Author: Aleksandr Osipov
Author-email: aleksandr.osipov@zoho.eu
License: MIT License
Description-Content-Type: UNKNOWN
Keywords: Hytech
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Operating System :: Microsoft :: Windows

PYHYTECHDB
========


pyhytechdb package is a set of DBMS HyTech(https://hytechdb.ru/)
bindings for Python Pure python or Cython.
Python Database API Specification v2.0 It works on
Python 3.5+. Windows only.
For work you need:
    - hscli.dll - API of the client part of DBMS HyTech 2.5 (https://hytechdb.ru/index.php?s=prod)
    - hsheap.dll 
    - hsinpt.dll 
    - hslogf.dl


Getting Started
========

    import pyhytechdb

    user = 'test'
    passwd = 'test'
    hdb = 'tcpip:/localhost:1000'

    with pyhytechdb.connect(hdb, user, passwd) as connection:
        with connection.cursor() as cur:
            cur.execute("select * from foo;")
            print(cur.fetchone())

Installing
========

setup install


Running the tests
========

setup test


Authors
========

ALEKSANDR OSIPOV aleksandr.osipov@zoho.eu


License
========

This project is licensed under the MIT License

