Schedule Scripts For Running With Time Interval
Project description
Script Scheduler
Script Scheduler is a package created for managing long running python files which is bound by some time interval like developer wants to run script for 3 hours in first half and 5 hours in second half a day. Here Script Scheduler comes into picture where you can just specify script path, start time and end time, these would be list.
Steps
- Specify list of python files
- Specify list of start times for all the scripts
- Specify list of end time for all the scripts
Installation
Script Scheduler requires python3 to run.
pip3 install scriptScheduler
Usage
Schedule Script
from scriptScheduler import scriptScheduler
fileList = ['path_to_file1.py', 'path_to_file2.py', 'path_to_file3.py']
startTimeList = ['12:00', '14:00', '16:00']
stopTimeList = ['13:00', '15:00', '17:00']
scriptScheduler(fileList, startTimeList, stopTimeList)
Remove Script From Timeline
from scriptScheduler import scriptRemove
scriptId = id # you can get this from logs
scriptRemove(scriptId)
Bring Back Script To Timeline
from scriptScheduler import scriptAdd
scriptId = id # you can get this from logs
scriptAdd(scriptId)
Update Timeline -- Development Inprogress
# It will there in next release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file Script Scheduler-0.3.0.tar.gz
.
File metadata
- Download URL: Script Scheduler-0.3.0.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ac3b358f92e7b3b9438fa1174102604feea856cef7df464c2645934da2807f52 |
|
MD5 | 89dba493088f3b9bdbe0b8fac8bde905 |
|
BLAKE2b-256 | 3c3746ac123e01c93cde7a90051d1d9747023798569d4e2bd9070814fa7bada4 |
File details
Details for the file Script_Scheduler-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: Script_Scheduler-0.3.0-py3-none-any.whl
- Upload date:
- Size: 1.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 393743efe67b1c7bbacd6b9a762e0029c6f4cfe2834c0b086c446b738d85d911 |
|
MD5 | eb1b2fb2018022193b8a3b1ab595915b |
|
BLAKE2b-256 | e70b036c1d3c2bea02320a0ad550301360f0ead7df0d8a94cb86878a5770b58a |