Metadata-Version: 2.1
Name: zteradb
Version: 1.0.2
Summary: ZTeraDB is a Python client library designed to simplify interactions with ZTeraDB.It provides a set of classes and tools that enable seamless integration, allowing developers to easily manage database operations and queries.
Home-page: https://github.com/zteradb/zteradb-python.git
Author: ZTeraDB
Author-email: iashokin@gmail.com
License: ZTeraDB
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENCE

# ZTeraDB Python Client library
This is a Python client library for interacting with **ZTeraDB**, a platform that allows you to connect to your 
existing databases and query them using **ZTeraDB Query Language (ZQL)**. The client provides an easy-to-use interface 
to send queries to ZTeraDB and retrieve results in a standardized format.

## Table of Contents

1. [Features](#features)
2. [Requirements](#requirements)
3. [Installing](#install)
4. [Usage](#usage)
5. [Configuration](./docs/config.md)
6. [ZTeraDB Connection](./docs/zteradb-connection.md)
7. [Query](./docs/query.md)
8. [Filter Conditions](./docs/filter-condition.md)
9. [License](#license)


## **Features**

- **Connect to Multiple Databases**: Seamlessly interact with your existing databases through ZTeraDB.
- **ZTeraDB Query Language (ZQL)**: Use a unified query language to query data across different database systems.
- **Easy Integration**: Easily integrate ZTeraDB into your Node.js application.
- **Asynchronous Queries**: Support for async/await syntax to handle queries and results asynchronously.
- **Error Handling**: Comprehensive error handling to help debug and manage database queries.

## Requirements
- This is a python module available through the PyPI (Python Package Index) registry.
- Before installing, download and [install python](https://www.python.org/downloads/). Python 3.6.0 or higher is required.


## **Install**
Run following command to install ZTeraDB client for python.

```sh

# Using pip
pip install zteradb


# Using conda
conda install zteradb

```

## **Usage**

```python
import os
import asyncio

# Import ZTeraDBConnect, ZTeraDBQuery classes 
from zteradb import ZTeraDBConnectionAsync, ZTeraDBQuery
from zteradb.zteradb_config import ZTeraDBConfig

ZTERADB_CONFIG = ZTeraDBConfig(
    ...
)

# Establish connection with ZTeraDB server
connection = ZTeraDBConnectionAsync("db1.zteradb.com", 7777, ZTERADB_CONFIG)

async def main():
    # Prepare select query
    query = ZTeraDBQuery("user").select()

    # Run the query
    result = await connection.run(query)

    # Iterate the result
    async for row in result:
        print("Query result: ", row)

    # Close the connection
    await connection.close()


asyncio.run(main())

```

## **License**

This project is licensed under the **ZTeraDB** License - see [LICENCE](./LICENCE) file for details.


