Metadata-Version: 2.4
Name: modal-run
Version: 0.1.0
Summary: CLI tool to run deployed Modal functions
Author: Nikita Demir
License: MIT
Project-URL: Homepage, https://github.com/ndemir/modal-run
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: typer>=0.9.0
Requires-Dist: click>=8.1.0
Requires-Dist: modal>=0.0.1
Dynamic: license-file

# modal-run

CLI tool to run deployed Modal functions remotely.

## Installation

```bash
pip install modal-run
```

## Usage

Run a Modal function using the format `app_name.function_name`:

```bash
modal-run app_name.function_name
```

### Example

```bash
modal-run my_app.process_data
```

This will call `modal.Function.from_name("my_app", "process_data").remote()` under the hood.

## Requirements

- Python 3.8+
- Modal account and authentication configured
