Metadata-Version: 2.4
Name: pyrayapp
Version: 1.0.5
Summary: Python Ray debug client
Author-email: Sergey Safronov <safronov.ser@icloud.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/olddeda/pyray
Keywords: ray,rayapp
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: markdown
Requires-Dist: msgspec>=0.18.6
Requires-Dist: pydantic>=2.10.6
Requires-Dist: requests
Dynamic: license-file

# pyray

Python [Ray](https://myray.ap) debugging client.

This package allows you to send structured debug payloads to Ray.app from your Python application,
including rich content like text, images, HTML, and formatted dumps — all with optional delayed sending.

## Features

- Send payloads like strings, booleans, images, dumps, and more
- Lazy evaluation — chain multiple calls and send once
- Stack trace origin support
- Compatible with Ray.app (https://myray.app)

## Installation

```bash
pip install pyrayapp
```

## Usage

```python
from pyrayapp import ray

ray("Hello from Python!").color("green").notify("Payload sent!").pause()
```

## License

MIT — see [LICENSE](./LICENSE)
