Metadata-Version: 2.4
Name: omniql
Version: 0.6.1
Summary: A standardized, multi-database query language (OQL) for Python.
Author-email: Uttam Mahata <uttam-mahata-cs@outlook.com>
License: Apache License 2.0
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: cffi>=1.0.0

# OmniQL for Python

A standardized, multi-database query language (OQL) for Python.

## Installation

```bash
pip install omniql
```

## Usage

```python
import asyncio
from omniql import OmniEngine, Query

async def main():
    engine = OmniEngine()
    # ...
```
