# cry [![PyPI](https://img.shields.io/pypi/v/cry.svg)](https://pypi.org/project/cry/) [![Changelog](https://img.shields.io/github/v/release/decarabas/cry?include_prereleases&label=changelog)](https://github.com/decarabas/cry/releases) [![Tests](https://github.com/decarabas/cry/actions/workflows/test.yml/badge.svg)](https://github.com/decarabas/cry/actions/workflows/test.yml) [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/decarabas/cry/blob/master/LICENSE) Command line feed reader ## Installation Install this tool using `pip`: ```bash pip install cry ``` ## Usage For help, run: ```bash cry --help ``` You can also use: ```bash python -m cry --help ``` ## Development To contribute to this tool, first checkout the code. Then create a new virtual environment: ```bash cd cry python -m venv venv source venv/bin/activate ``` Now install the dependencies and test dependencies: ```bash pip install -e '.[test]' ``` To run the tests: ```bash pytest ```