Metadata-Version: 2.2
Name: pipli
Version: 1.0.2
Summary: A CLI tool that automatically installs missing Python dependencies and runs the given command.
Home-page: https://github.com/paulrahul/pipli
Author: Rahul Paul
Author-email: devnull90210@gmail.com
Project-URL: Bug Tracker, https://github.com/paulrahul/pipli/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: project-url
Dynamic: requires-python
Dynamic: summary

# pipli

[![PyPI version](https://img.shields.io/pypi/v/pipli.svg)](https://pypi.org/project/pipli/)

Auto install pip dependencies needed for a given command to run successfully.
Pipli keeps installing missing packages as long as it encounters `ModuleNotFoundError`
or `command not found` errors while running user given command. Pipli finally
runs the given command when all required packages have been installed.

## Usage

```bash
pipli  '<cmd>'
```

## Installation

```bash
pip install pipli
```

## Examples

```bash
pipli 'python main.py'
```

```bash
pipli 'flask --app hello run'
```

```bash
pipli 'uvicorn main:app --host 0.0.0.0 --port 80'
```
