Command line feed reader
Find a file
2024-07-11 07:09:46 +09:00
.github/workflows Move stuff over from previous incarnation into new frame 2024-07-08 07:32:37 +09:00
cry Count, show in the right order 2024-07-11 07:09:46 +09:00
tests Move stuff over from previous incarnation into new frame 2024-07-08 07:32:37 +09:00
.gitignore Move stuff over from previous incarnation into new frame 2024-07-08 07:32:37 +09:00
.pdm-python Move stuff over from previous incarnation into new frame 2024-07-08 07:32:37 +09:00
LICENSE Move stuff over from previous incarnation into new frame 2024-07-08 07:32:37 +09:00
pdm.lock Move stuff over from previous incarnation into new frame 2024-07-08 07:32:37 +09:00
pyproject.toml Move stuff over from previous incarnation into new frame 2024-07-08 07:32:37 +09:00
README.md Move stuff over from previous incarnation into new frame 2024-07-08 07:32:37 +09:00

cry

PyPI Changelog Tests License

Command line feed reader

Installation

Install this tool using pip:

pip install cry

Usage

For help, run:

cry --help

You can also use:

python -m cry --help

Development

To contribute to this tool, first checkout the code. Then create a new virtual environment:

cd cry
python -m venv venv
source venv/bin/activate

Now install the dependencies and test dependencies:

pip install -e '.[test]'

To run the tests:

pytest