
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Pipeline development framework, easy to experiment and compare different pipelines, quick to deploy to workflow orchestration tools
Most of the current workflow orchestrators focus on executing the already-developed pipelines in production. This library focuses on the pipeline development process. It aims to make it easy to develop pipeline, and once the user reaches a good pipeline, it aims to make it easy to export to other production-grade workflow orchestrators. Notable features:
pip install theflow
(A code walk-through of this session is stored in examples/10-minutes-quick-start.ipynb
. You can run it with Google Colab (TODO - attach the link).)
Pipeline can be defined as code. You initialize all the ops in self.initialize
and route them in self.run
.
from theflow import Function
# Define some operations used inside the pipeline
# Operation 1: normal class-based Python object
class IncrementBy(Function):
x: int
def run(self, y):
return self.x + y
# Operation 2: normal Python function
def decrement_by_5(x):
return x - 5
# Declare flow
class MathFlow(Function):
increment: Function
decrement: Function
def run(self, x):
# Route the operations in the flow
y = self.increment(x)
y = self.decrement(y)
y = self.increment(y)
return y
flow = MathFlow(increment=IncrementBy(x=10), decrement=decrement_by_5)
You run the pipeline by directly calling it. The output is the same object returned by self.run
.
output = flow(x=5)
print(f"{output=}, {type(output)=}") # output=5, type(output)=int
You can investigate pipeline's last run through the last_run
property.
flow.last_run.id() # id of the last run
flow.last_run.logs() # list all information of each step
# [TODO] flow.last_run.visualize(path="vis.png") # export the graph in `vis.png` file
lru_cache
, takes in the original input key, specify
the cache, but the cache should be file-backed, for run-after-run execution.MIT License.
FAQs
A simple framework to build and run flows
We found that theflow demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.