Metadata-Version: 2.1
Name: dappier
Version: 0.2.1
Summary: The Dappier Python SDK provides an easy-to-use interface for interacting with the Dappier API.
Author: AI20labs
Author-email: dev@ai20labs.com
Requires-Python: >=3.12,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: asyncio (>=3.4.3,<4.0.0)
Requires-Dist: httpx (>=0.28.1,<0.29.0)
Requires-Dist: logging (>=0.4.9.6,<0.5.0.0)
Requires-Dist: pydantic (>=2.10.3,<3.0.0)
Description-Content-Type: text/markdown

# Dappier Python SDK

The Dappier Python SDK provides an easy-to-use interface for interacting with the Dappier API.

---

## Installation

Install the SDK using pip:

```bash
pip install dappier
```

---

## Usage

Below is an example of how to use the Dappier SDK:

```python
import os
from dappier import Dappier

# Set your API key as an environment variable
os.environ["DAPPIER_API_KEY"] = "<YOUR_API_KEY>"

# Initialize the Dappier SDK
app = Dappier()

# Make an API call
response = app.real_time_search_api("Who won the US election in 2024?")
print(response.message)
```

Replace `<YOUR_API_KEY>` with your actual Dappier API key.

---

## Features

- **Real-time Search API:** Query real-world events and retrieve updated information.
- **Simple and Intuitive Interface:** Focused on ease of use and efficient API calls.

For detailed documentation and advanced features, refer to the official [Dappier documentation](https://docs.dappier.com/quickstart).

