An open API service indexing awesome lists of open source software.

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

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
```