These Examples WhileGet started
Python library

These Examples While

These Examples While is a pure-Python library: A tiny, pure‑Python workflow engine for building “trigger → action” automations offline.

19 tests passing
Standard library only — no dependencies
Python 3.9+
Wheel + full source, MIT licensed

What's in the API

Every function listed here exists in the shipped source.

Trigger

Base class for a trigger that produces data when fired.

Action

Base class for an action that consumes data.

Workflow

A simple trigger‑action workflow.

ManualTrigger

A trigger that returns a static value or the result of a callable.

PrintAction

An action that prints the received data.

ListAction

An action that appends received data to a provided list.

Built for

These Examples While is a pure-Python library: A tiny, pure‑Python workflow engine for building “trigger → action” autom

Pricing

Emailed to you as a zip right after purchase.

One-time purchase

Emailed to you as a zip right after purchase.

Get it now — $29

Frequently asked

What exactly do I get?+
A zip containing the installable wheel (theseexampleswhile-0.1.0-py3-none-any.whl), the full source, the README and the 19-test suite. MIT licensed.
Has it actually been tested?+
Yes. Before listing, the package was built into a wheel, installed with no network access in an isolated sandbox, and its 19 tests passed against the installed package. The quickstart example below ran as part of that check.
How do I use it?+
pip install the wheel, then: from theseexampleswhile import ManualTrigger, PrintAction, Workflow def main(): trigger = ManualTrigger("Hello from TheseExamplesWhile!") action = PrintAction(prefix="[Workflow] ") workflow = Workflow(trigger, action) workflow.execute() if __name__ == "__main__": main()
Does it have dependencies?+
None. It uses the Python standard library only.

Get These Examples While

Install it and run the quickstart in a minute.