Metadata-Version: 2.4
Name: hiws
Version: 0.2.1
Summary: A wrapper for WhatsApp's Cloud API
Home-page: https://github.com/cervant-ai/hiws
Author: Tomas Santana
Author-email: Tomas Santana <tomas@cervant.chat>
License: MIT
Project-URL: Homepage, https://github.com/cervant-ai/hiws
Project-URL: Repository, https://github.com/cervant-ai/hiws.git
Project-URL: Issues, https://github.com/cervant-ai/hiws/issues
Keywords: hiws,python,package
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pydantic>=2.11.7
Requires-Dist: httpx>=0.28.1
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.23; extra == "dev"
Requires-Dist: black>=21.0; extra == "dev"
Requires-Dist: flake8>=3.8.0; extra == "dev"
Requires-Dist: mypy>=0.800; extra == "dev"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# hiws

A Python package for interacting with WhatsApp's Cloud API.

## Installation

```bash
pip install hiws
```

## Usage

```python
from hiws import WhatsAppMessenger

messenger = WhatsAppMessenger(access_token="YOUR_ACCESS_TOKEN", phone_number_id="YOUR_PHONE_NUMBER_ID")

# Example usage
message_id = await messenger.send_text(recipient_phone_number="1234567890", text="Hello, World!")

print(message_id)
```

## Development

To install in development mode:

```bash
git clone https://github.com/cervant-ai/hiws.git
cd hiws
pip install -e .
```

To install development dependencies:

```bash
pip install -e ".[dev]"
```

## Testing

```bash
pytest
```

```bash
pip install -e ".[dev]"
```

## Testing

```bash
pytest
```

## License

This project is licensed under the MIT License - see the LICENSE file for details.
