Metadata-Version: 2.4
Name: seltz
Version: 1.0.0
Summary: Seltz Python SDK for AI-powered search
Author-email: Seltz <support@seltz.ai>
Project-URL: Homepage, https://seltz.ai
Project-URL: Documentation, https://docs.seltz.ai
Project-URL: Repository, https://github.com/seltz-ai/seltz-python-sdk
Project-URL: Bug Tracker, https://github.com/seltz-ai/seltz-python-sdk/issues
Keywords: seltz,search,ai,sdk,api,web-search,news-search
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
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: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: grpcio>=1.76.0
Requires-Dist: protobuf<6.0

<div align="center">
  <img src="https://repository-images.githubusercontent.com/1108844600/672f4876-01a4-4fde-8ac2-ecab4c914c98">
</div>

<p align="center">
  <!-- Python -->
  <a href="https://www.python.org" alt="Python"><img src="https://badges.aleen42.com/src/python.svg"></a>
  <!-- Version -->
  <a href="https://pypi.org/project/seltz/"><img src="https://img.shields.io/pypi/v/seltz?color=light-green" alt="PyPI version"></a>
</p>

# Seltz Python SDK

Official Python SDK for [Seltz](https://seltz.ai), the Web search engine for AI agents.

## 💾 Installation

```bash
pip install seltz
```

Requires Python 3.9 or higher.

## ⚡️ Quick Start

```python
from seltz import Seltz

client = Seltz(api_key="your-api-key")

# Search the Web
response = client.search("best ai search engines", max_results=10)

# Access results
for document in response.documents:
    print(f"URL: {document.url}")
    print(f"Content: {document.content}")
```

**Output:**

```
URL: https://www.best-ai-search-engines.com
Content: Generative AI can make finding information faster and more intuitive.
If you’re tired of traditional search, explore some of the best AI-powered
search engines we've tested...
```

## 📚 Documentation

Browse the [documentation](https://docs.seltz.ai) for more details.
