Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Script Scheduler-0.3.0.tar.gz (3.7 kB view hashes)

Uploaded Source

Built Distribution

Script_Scheduler-0.3.0-py3-none-any.whl (1.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page