https://github.com/willguimont/meanwhile
Run job when you're away from the computer
https://github.com/willguimont/meanwhile
automation job-scheduler python
Last synced: 10 months ago
JSON representation
Run job when you're away from the computer
- Host: GitHub
- URL: https://github.com/willguimont/meanwhile
- Owner: willGuimont
- License: mit
- Created: 2022-01-10T19:47:17.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-28T01:30:12.000Z (about 2 years ago)
- Last Synced: 2025-07-03T19:07:11.462Z (about 1 year ago)
- Topics: automation, job-scheduler, python
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# meanwhile
Run jobs while you're away from the computer.
## Usage
```bash
python meanwhile --job example_job.json --delay 10 --workdir workdir
```
example_job.json
```json
{
"jobs": [
{
"name": "test1",
"command": "echo \"a\";sleep 5; echo \"b\""
},
{
"name": "test2",
"command": "echo \"c\";sleep 5; echo \"d\""
}
]
}
```