Skip to main content

Task scheduler for python

Project description

PyPlanPro

UNDER CONSTRUCTION

This project is currently under construction and is not yet ready for use. We are working hard to bring you a great project, and will update this README as soon as it's ready for use. Thank you for your patience!

In the meantime, feel free to check out the project code and contribute if you'd like. We welcome any feedback or suggestions you may have.

This Python program is a task scheduler that takes a set of tasks and assigns them to resources within their respective resource groups. The program uses Google OR-Tools library to build a constraint programming model and solve it, minimizing the makespan of the tasks.

Features

Define tasks with duration, priority, and resource groups Define resources with availability slots Schedule tasks to resources within their respective resource groups, minimizing the makespan Output the optimal or feasible schedule if found

Requirements

To run this program, you need to have the following packages installed:

Python 3.6 or later ortools (pip install ortools)

Installation

pip install pyplanpro

Usage

  1. Import the necessary classes and functions:
from pyplanpro import Resource, ResourceGroup, Task, Scheduler
  1. Define resources and resource groups:
r1_availability_slots = [
     {"slot_id" : 0, "start":0, "end":4},
     {"slot_id" : 1, "start":5, "end":10}
]
r2_availability_slots = [
     {"slot_id" : 0, "start":0, "end":10}
]
resource1 = Resource(id=1, availability_slots=r1_availability_slots)
resource2 = Resource(id=2, availability_slots=r2_availability_slots)
resource_group = ResourceGroup(id=1, resources=[resource1, resource2])
  1. Define tasks with duration, and resource group:
tasks = [Task(id=1, duration=3, resource_group=resource_group)]
  1. Set the scheduling horizon:
horizon = 50
  1. Call the Scheduler function with tasks and horizon:
s = Scheduler()
s.schedule(tasks, horizon= horizon)

If a solution is found, the program will print the optimal or feasible schedule with makespan, resource assignments, task start and end times, and durations.

Makespan = 8.0
Assigned to resource 2
Task (0, 0): starts: 0, end: 8, duration: 8

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

pyplanpro-0.0.9.tar.gz (22.9 kB view details)

Uploaded Source

Built Distribution

pyplanpro-0.0.9-py3-none-any.whl (24.5 kB view details)

Uploaded Python 3

File details

Details for the file pyplanpro-0.0.9.tar.gz.

File metadata

  • Download URL: pyplanpro-0.0.9.tar.gz
  • Upload date:
  • Size: 22.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.3

File hashes

Hashes for pyplanpro-0.0.9.tar.gz
Algorithm Hash digest
SHA256 d271eb9a00aebb8e63f361ed44633cd25a5b518ac29e5dcd61e4675c7bfc8098
MD5 c5ff912f30288fea971d63c6c7880ae9
BLAKE2b-256 3f6e70c65701c603815daf4608695e6ded1704c48604d593493410733c14e379

See more details on using hashes here.

File details

Details for the file pyplanpro-0.0.9-py3-none-any.whl.

File metadata

  • Download URL: pyplanpro-0.0.9-py3-none-any.whl
  • Upload date:
  • Size: 24.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.3

File hashes

Hashes for pyplanpro-0.0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 df24f5833872948658c3e13bd418eeed2d24aefcb6714cb71f347072cc873db1
MD5 778e5e8c58a459465ce56cd55adf8699
BLAKE2b-256 a0932e29ce67e6045ce857f70ca75dfd8f471f223e5a1b143da4f3173ada065a

See more details on using hashes here.

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