Metadata-Version: 2.4
Name: powercli
Version: 0.3.5
Summary: High-level CLI interaction
Author-email: Quinten Roets <qdr2104@columbia.edu>
License-Expression: MIT
Project-URL: Source Code, https://github.com/quintenroets/cli
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pexpect<5,>=4.9.0
Requires-Dist: rich<15,>=13.7.1
Provides-Extra: dev
Requires-Dist: hypothesis<7,>=6.97.1; extra == "dev"
Requires-Dist: package-dev-tools<1,>=0.7.1; extra == "dev"
Requires-Dist: package-dev-utils<1,>=0.1.6; extra == "dev"
Requires-Dist: superpathlib<3,>=2.0.2; extra == "dev"
Dynamic: license-file

# PowerCLI
[![PyPI version](https://badge.fury.io/py/powercli.svg)](https://badge.fury.io/py/powercli)
![PyPI downloads](https://img.shields.io/pypi/dm/powercli)
![Python version](https://img.shields.io/badge/python-3.10+-brightgreen)
![Operating system](https://img.shields.io/badge/os-linux%20%7c%20macOS%20%7c%20windows-brightgreen)
![Coverage](https://img.shields.io/badge/coverage-100%25-brightgreen)

High-level CLI:
* Run commands
* Capture outputs
* Ask user input
* Show progress

## Usage

Run
```python
import cli

cli.run("ls", "-l")
```
## Installation
```shell
pip install powercli
```
