Metadata-Version: 2.4
Name: talqora
Version: 0.0.7
Summary: 
Requires-Python: >=3.10,<4.0
Classifier: Intended Audience :: Developers
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: OS Independent
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3.15
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Provides-Extra: aiohttp
Requires-Dist: aiohttp (>=3.14.1,<4) ; (python_version >= "3.10") and (extra == "aiohttp")
Requires-Dist: httpx (>=0.21.2)
Requires-Dist: httpx-aiohttp (>=0.1.8,<0.2.0) ; (python_version >= "3.10") and (extra == "aiohttp")
Requires-Dist: pydantic (>=1.9.2)
Requires-Dist: pydantic-core (>=2.18.2,<3.0.0)
Requires-Dist: typing_extensions (>=4.0.0)
Description-Content-Type: text/markdown

# Talqora Vector Python SDK

Official Python client for regional vector storage, dense and sparse retrieval, hybrid search, file processing, and RAG applications with Talqora Vector.

## Install

```bash
pip install talqora
```

## Usage

```python
from talqora import TalqoraApi

client = TalqoraApi(talqora_api_key="tq_live_...")
results = client.vectors.query(
    "idx_example",
    search_type="sparse",
    sparse_query="hybrid search",
    top_k=5,
)
```

See the [Talqora documentation](https://docs.talqora.com/get-started/sdks) for the complete SDK guide.

