pypushflow
A task scheduler for cyclic and acyclic graphs
Install
python3 -m pip install pypushflow[mx]
Use the mx option for installation at MX beamlines.
Run tests
python3 -m pip install pypushflow[test]
pytest
Getting started
import logging
from pypushflow.Workflow import Workflow
from pypushflow.StopActor import StopActor
from pypushflow.StartActor import StartActor
from pypushflow.PythonActor import PythonActor
from pypushflow.ThreadCounter import ThreadCounter
class MyWorkflow(Workflow):
def __init__(self, name):
super().__init__(name, level=logging.DEBUG)
ctr = ThreadCounter(parent=self)
self.startActor = StartActor(parent=self, thread_counter=ctr)
self.pythonActor = PythonActor(
parent=self,
script="pypushflow.tests.tasks.pythonActorTest.py",
name="Python Actor Test",
thread_counter=ctr,
)
self.stopActor = StopActor(parent=self, thread_counter=ctr)
self.startActor.connect(self.pythonActor)
self.pythonActor.connect(self.stopActor)
testMyWorkflow = MyWorkflow("Test workflow")
inData = {"name": "World"}
outData = testMyWorkflow.run(inData, timeout=15, pool_type="process")
assert outData["reply"] == "Hello World!"
Documentation
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pypushflow-0.4.0.tar.gz
(28.2 kB
view details)
File details
Details for the file pypushflow-0.4.0.tar.gz.
File metadata
- Download URL: pypushflow-0.4.0.tar.gz
- Upload date:
- Size: 28.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16021c974e53d4f8b1c120e6e8fba2b78ed0b15ce0bfe96615ae69d92db60a5a
|
|
| MD5 |
4b3a6334070bfccaba21017c77182cb4
|
|
| BLAKE2b-256 |
cce12f5b0ca78db20e0f7ddbca8789d3932055bbe91f069bd792fc812b20716a
|