https://github.com/aminehsan/task-scheduling
A Python script for scheduled execution of tasks
https://github.com/aminehsan/task-scheduling
python scheduled-task scheduler script
Last synced: 10 months ago
JSON representation
A Python script for scheduled execution of tasks
- Host: GitHub
- URL: https://github.com/aminehsan/task-scheduling
- Owner: aminehsan
- Created: 2024-06-19T17:43:33.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-26T12:19:50.000Z (over 1 year ago)
- Last Synced: 2024-12-04T06:09:44.410Z (about 1 year ago)
- Topics: python, scheduled-task, scheduler, script
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A Python script for scheduled execution of tasks
## How to run Python
```bash
... > job_1()
... > job_2()
... > job_?()
python main.py
```
## How to configuration tasks.json
```bash
[
{
"metaData": {},
"tasks": "..."
},
{
"metaData": {},
"tasks": "..."
}
]
```
#### Structure :
```
├── main.py
├── requirements.txt
├── tasks.json
```