Metadata-Version: 2.1
Name: RedXClient
Version: 0.2.0
Summary: A Python Client for RedX Courier Service
Author-Email: Utsob Roy <roy@co.design>
License: MPL-2.0
Requires-Python: >=3.10
Requires-Dist: pydantic>=2.6.4
Requires-Dist: requests>=2.31.0
Description-Content-Type: text/markdown

# RedXClient

RedXClient is a client for the RedX server. It is written in Python and uses the `requests` and `pydantic` to communicate with the server and validate data.

It also returns the data as convenient Python objects.

## Installation

```bash
pip install redxclient
```

## Usage

```python
from redxclient import RedXClient

client = RedXClient(api_key="your_api_key")

parcel = client.get_parcel_details("parcel_id")
print(parcel)
```
