Metadata-Version: 2.4
Name: medopia-cli
Version: 0.1.0
Summary: CLI tool for uploading models and datasets to MedOpia
License: MIT
Project-URL: Homepage, https://medopia.io
Project-URL: Repository, https://github.com/medopia/medopia-cli
Keywords: medopia,cli,medical-ai,machine-learning
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: typer>=0.12
Requires-Dist: httpx>=0.27
Requires-Dist: rich>=13

# meditopia-cli

Official CLI for [MedOpia](https://meditopia.io) — upload and manage clinical AI models and datasets from your terminal.

## Installation

```bash
pip install meditopia-cli
```

## Quick start

```bash
medi login --token <your-api-token>
medi upload model ./my-model --name "chest-xray-classifier"
medi upload dataset ./my-dataset --name "mimic-cxr-subset"
```

## Commands

```
medi --help
```

## Getting an API token

1. Log in to [meditopia.io](https://meditopia.io)
2. Go to **Settings → API Tokens**
3. Create a new token and copy it
4. Run `medi login --token <token>`
