Metadata-Version: 2.4
Name: modal-run
Version: 0.1.1
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

Super simple tool to run deployed Modal functions from the CLI. 

## Installation

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

## Usage

```bash
modal-run my_app.my_function
```

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

```bash
modal-run -d my_app.function_name --an-arg my_arg
```

This will call `modal.Function.from_name("my_app", "function_name").spawn(an_arg: "ny_arg")` under the hood.

## Requirements

- Python 3.8+
- Modal account and authentication configured
