Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sukhbinder/winzy-cut
Mimics the functionality of the 'cut' command
https://github.com/sukhbinder/winzy-cut
Last synced: 2 days ago
JSON representation
Mimics the functionality of the 'cut' command
- Host: GitHub
- URL: https://github.com/sukhbinder/winzy-cut
- Owner: sukhbinder
- License: apache-2.0
- Created: 2024-10-13T10:21:36.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-13T10:23:37.000Z (3 months ago)
- Last Synced: 2024-12-22T01:48:43.878Z (about 1 month ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# winzy-cut
[![PyPI](https://img.shields.io/pypi/v/winzy-cut.svg)](https://pypi.org/project/winzy-cut/)
[![Changelog](https://img.shields.io/github/v/release/sukhbinder/winzy-cut?include_prereleases&label=changelog)](https://github.com/sukhbinder/winzy-cut/releases)
[![Tests](https://github.com/sukhbinder/winzy-cut/workflows/Test/badge.svg)](https://github.com/sukhbinder/winzy-cut/actions?query=workflow%3ATest)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/sukhbinder/winzy-cut/blob/main/LICENSE)Mimics the functionality of the 'cut' 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-cut
```
## UsageUsage instructions go here.
## Development
To set up this plugin locally, first checkout the code. Then create a new virtual environment:
```bash
cd winzy-cut
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
```