Metadata-Version: 2.4
Name: caliper-py
Version: 0.1.0
Summary: Python client and CLI server for Caliper experiment tracker
Author-email: Pirajesh M R <115163471+verz0@users.noreply.github.com>
License: MIT
Project-URL: Homepage, https://github.com/verz0/Caliper
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# caliper-py

Python logging client and local dashboard launcher CLI for Caliper.

## Installation
```bash
pip install caliper-py
```

## Usage
```python
import caliper

run = caliper.init(project="My Project", name="my-run")
run.log({"loss": 0.5, "accuracy": 0.8})
```
