https://github.com/sukhbinder/winzy-taskloop
Run tasks in loop from cli
https://github.com/sukhbinder/winzy-taskloop
Last synced: 3 months ago
JSON representation
Run tasks in loop from cli
- Host: GitHub
- URL: https://github.com/sukhbinder/winzy-taskloop
- Owner: sukhbinder
- License: apache-2.0
- Created: 2025-01-09T15:58:26.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-01-09T16:06:56.000Z (6 months ago)
- Last Synced: 2025-02-20T00:28:56.950Z (5 months ago)
- Language: Python
- Size: 135 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# winzy-taskloop
[](https://pypi.org/project/winzy-taskloop/)
[](https://github.com/sukhbinder/winzy-taskloop/releases)
[](https://github.com/sukhbinder/winzy-taskloop/actions?query=workflow%3ATest)
[](https://github.com/sukhbinder/winzy-taskloop/blob/main/LICENSE)Run tasks in loop from cli
## Installation
First [install winzy](https://github.com/sukhbinder/winzy) by typing
```bash
pip install winzy
```Then install this plugin in the same environment as your Winzy application.
```bash
winzy install winzy-taskloop
```
## UsageUse this to look task from cli.

## Development
To set up this plugin locally, first checkout the code. Then create a new virtual environment:
```bash
cd winzy-taskloop
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
```