Metadata-Version: 2.4
Name: cognidb-client
Version: 1.0.0
Summary: Official Python Client for CogniDB AI-Native Unified Database Engine
Home-page: https://github.com/upendra-manike/CogniDB
Author: Upendra Manike
Author-email: upendra@cognidb.io
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Database
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.28.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# 🐍 CogniDB Official Python SDK (`pip install cognidb-client`)

Official Python Client for **CogniDB**—the AI-Native Unified Database Engine.

---

## ⚡ Quick Start

```bash
pip install cognidb-client
```

```python
from cognidb import CogniDBClient

client = CogniDBClient(host="http://localhost:8080")

# Perform Hybrid SQL + Vector Search
results = client.vector_search(
    table="developers",
    query_text="LLM fine-tuning vector index",
    top_k=3,
    where_clause="experience_years > 4"
)

print(results)
```
