Metadata-Version: 2.1
Name: py-heyjude
Version: 0.1.0
Summary: A Python wrapper for the HeyJude API
Home-page: UNKNOWN
Author: Evil Toast
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# py-heyjude

A Python wrapper for the HeyJude API.

## Installation

```bash
pip install py-heyjude
```


## Usage
```
from heyjude.api import HeyJudeAPI

api = HeyJudeAPI(email="your_email@example.com", password="your_password", api_token="<x-api-token here check your network tab for this>")
print(api.get_subscription_status())

```

## Features
- Authenticate and retrieve token.
- Refresh token.
- Get subscription status.
- Retrieve open tasks.
- Get details of a specific task by its ID.
- Send a message related to a specific task.
- Create a new task.


## License
This project is licensed under the MIT License. See the LICENSE file for details.

