Metadata-Version: 2.1
Name: plot-cli
Version: 0.1.0
Summary: Command Line Interface for Data Visualization
Home-page: https://github.com/xkumiyu/plot-cli
License: MIT
Author: xkumiyu
Author-email: xkumiyu@gmail.com
Requires-Python: >=3.6.1,<4
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Utilities
Requires-Dist: click (>=7.1.1,<8.0.0)
Requires-Dist: matplotlib (>=3.2.0,<4.0.0)
Requires-Dist: pandas (>=1.0.1,<2.0.0)
Project-URL: Repository, https://github.com/xkumiyu/plot-cli
Description-Content-Type: text/markdown

# Plot CLI

[![GitHub Workflow Status][actions-status]][actions] [![codecov][codecov-status]][codecov] [![License][license]][license-file]

This tool is command line interface for data visualization.

The plot-cli works on Python version 3.6.1 and greater.

## Installation

Install and update using pip:

```sh
pip install plot-cli
```

## Usage

To plot from file, use "-i" option:

```sh
plot -i data.csv
```

To plot from stdin:

```sh
cat data.csv | plot
```

To save to file, use "-o" option:

```sh
plot -i data.csv -o plot.png
```

If you do not use "-o" option, it is saved in a temporary file and opened.

See also `plot --help`.

### Examples

```sh
echo "0\n1\n4" | plot
```

## Change Log

See [Change Log](CHANGELOG.md).

[actions]: https://github.com/xkumiyu/plot-cli/actions
[actions-status]: https://img.shields.io/github/workflow/status/xkumiyu/plot-cli/Python%20package
[codecov]: https://codecov.io/gh/xkumiyu/plot-cli
[codecov-status]: https://img.shields.io/codecov/c/github/xkumiyu/plot-cli
[license]: https://img.shields.io/github/license/xkumiyu/plot-cli
[license-file]: https://github.com/xkumiyu/plot-cli/blob/master/LICENSE

