Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sukhbinder/winzy-wc
Mimics the functionality of the 'wc' command in Unix.
https://github.com/sukhbinder/winzy-wc
Last synced: 2 months ago
JSON representation
Mimics the functionality of the 'wc' command in Unix.
- Host: GitHub
- URL: https://github.com/sukhbinder/winzy-wc
- Owner: sukhbinder
- License: apache-2.0
- Created: 2024-10-13T15:51:16.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-13T15:56:34.000Z (3 months ago)
- Last Synced: 2024-10-13T16:11:33.077Z (3 months ago)
- Language: Python
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# winzy-wc
[![PyPI](https://img.shields.io/pypi/v/winzy-wc.svg)](https://pypi.org/project/winzy-wc/)
[![Changelog](https://img.shields.io/github/v/release/sukhbinder/winzy-wc?include_prereleases&label=changelog)](https://github.com/sukhbinder/winzy-wc/releases)
[![Tests](https://github.com/sukhbinder/winzy-wc/workflows/Test/badge.svg)](https://github.com/sukhbinder/winzy-wc/actions?query=workflow%3ATest)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/sukhbinder/winzy-wc/blob/main/LICENSE)Mimics the functionality of the 'wc' command"
## Installation
First configure your Winzy project [to use Winzy](https://github.com/sukhbinder/winzy).
Then install this plugin in the same environment as your Winzy application.
```bash
pip install winzy-wc
```
## UsageUsage instructions go here.
## Development
To set up this plugin locally, first checkout the code. Then create a new virtual environment:
```bash
cd winzy-wc
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
python -m pytest
```