Metadata-Version: 2.4
Name: ibis-sqreamdb
Version: 0.1.0
Summary: SQreamDB backend for the Ibis framework
License: Apache-2.0
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: ibis-framework>=8.0.0
Requires-Dist: pysqream
Requires-Dist: sqlglot
Requires-Dist: pandas

# Ibis SQreamDB Backend

This package provides a backend for the [Ibis framework](https://ibis-project.org/) that connects to [SQreamDB](https://sqream.com/).

## Installation

From within the `ibis-framework-sqream` directory, run:
```bash
# It's recommended to uninstall any previous versions first
pip uninstall -y ibis-sqreamdb

# Install in editable mode
pip install -e .
```

## Usage

```python
import ibis

# Example connection
con = ibis.sqream.connect(
    host="127.0.0.1",
    port=5000,
    database="master",
    user="sqream",
    password="sqream",
)

version = con.version
print(f"Connected to SQreamDB version: {version}")
```
