Metadata-Version: 2.4
Name: quercle
Version: 1.0.4
Summary: Official generated Python SDK for Quercle API.
Project-URL: Homepage, https://quercle.dev
Project-URL: Documentation, https://quercle.dev/docs
Project-URL: Repository, https://github.com/quercledev/quercle-python
Author-email: Quercle <support@quercle.dev>
License: MIT
License-File: LICENSE
Keywords: api,openapi,python,quercle,sdk
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Typing :: Typed
Requires-Python: >=3.10
Requires-Dist: attrs>=23.1.0
Requires-Dist: httpx>=0.27.0
Requires-Dist: python-dateutil>=2.8.0
Provides-Extra: dev
Requires-Dist: pytest>=8.0.0; extra == 'dev'
Requires-Dist: ruff>=0.8.0; extra == 'dev'
Requires-Dist: ty; extra == 'dev'
Description-Content-Type: text/markdown

# quercle

Python SDK for Quercle API.

## Installation

```bash
uv add quercle
```

## Usage

```python
from quercle import QuercleClient

client = QuercleClient(api_key="your_api_key")
response = client.search("latest bun release notes")

print(response.result)
```

## Async Usage

```python
import asyncio

from quercle import AsyncQuercleClient

async def main() -> None:
    async with AsyncQuercleClient(api_key="your_api_key") as client:
        response = await client.search("latest bun release notes")
        print(response.result)


if __name__ == "__main__":
    asyncio.run(main())
```

## Tool Metadata

```python
from quercle import tool_metadata

print(tool_metadata["search"]["description"])
print(tool_metadata["search"]["parameters"]["query"])
```
