Metadata-Version: 2.4
Name: textql
Version: 0.1.0
Summary: Python client library for TextQL
Author: TextQL Labs
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: grpcio>=1.68.0
Requires-Dist: protobuf>=5.28.0
Provides-Extra: dev
Requires-Dist: grpcio-tools>=1.68.0; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: mypy; extra == "dev"
Requires-Dist: mypy-protobuf; extra == "dev"
Dynamic: author
Dynamic: requires-python

# TextQL Python SDK

Python client library for TextQL, providing access to platform APIs through protocol buffers.

## Installation

```bash
pip install textql
```

## Usage

```python
from textql.platform import chat_pb2, connectors_pb2, playbooks_pb2

# Use the protocol buffer classes
# Example: create a chat request
request = chat_pb2.CreateChatRequest(...)
```

## Features

- **Chat API** - Interact with TextQL chat functionality
- **Connectors API** - Manage data connectors
- **Playbooks API** - Work with playbooks

## Requirements

- Python >= 3.8
- grpcio >= 1.68.0
- protobuf >= 5.28.0

## Development

The protocol buffers are automatically generated from the TextQL platform definitions.

## License

Copyright TextQL Labs
