Skip to main content

A simple stupid finite state machine.

Project description

simplestate

Simplestate helps developers create and manage finite state machines in the simplest way possible—focusing solely on states and transitions, leaving out complex event systems.

Features

  • Focus on states and transitions.
  • Minimalistic and easy to use.
  • Supports entering-state handlers for additional functionality.

Installation

To install simplestate, use poetry:

poetry add simplestate

Usage Example

Here's a basic example of using simplestate:

from simplestate import StateMachine

m = StateMachine("loading")          # Define the machine with an initial state
m["loading"] + "error" >> "failed"   # Transition from loading to failed on "error"
m["loading"] + "ok" >> "success"     # Transition from loading to success on "ok"
m["?"] + "back" >> "loading"         # Any state transitions to loading on "back"

m.add_callbacks({                    # Add handlers for entering states
    "loading": lambda previous: print(f"{previous} >> loading"),
    "failed": lambda previous, error: print(f"{previous} >> failed: {error}"),
    "success": lambda previous: print(f"{previous} >> success"),
})

m.start()  # Start the machine, adjust inital state by this m.start(at_state="ok")
assert m.current == "loading"

m.handle("error", error="Something went wrong")  # Trigger transitions
assert m.current == "failed"

m.handle("back")
assert m.current == "loading"

Why Simplestate?

The goal of simplestate is to keep finite state machines simple and focused. By eliminating complex event systems, you can easily manage states and transitions while keeping the code testable and maintainable.

Event Handling on State Entry

Simplestate allows event handling when entering a state using .add_callbacks(). These callbacks take previous and an optional **input_context.

FAQ

Q: How can I handle state exit events?
A: You can use the entering handler for the next state to handle actions when leaving the previous state.

def on_state_x(previous, **input_context):
    if previous == "a":
        do_this()
    elif previous == "b":
        do_that()

Q: Can I represent the state machine as a class?
A: Yes! Think of simplestate as a state manager. You can compose it within your own class for handling side effects:

class TrafficLight:
    def __init__(self):
        brain = StateMachine("red")
        brain["red"] + "next" >> "yellow_green"
        brain["yellow_green"] + "next" >> "green"
        brain["green"] + "next" >> "yellow_red"
        brain["yellow_red"] + "next" >> "red"
        brain.start("red")

        self.machine = brain

    def display(self) -> str:
        return self.machine.current

    def next(self) -> None:
        self.machine.handle("next")

Tests

To run the tests:

poetry install --with test
poetry run pytest

Contribution

Contributions are welcome! Feel free to open an issue or submit a pull request.

  1. Install devcontainer
  2. Open this project in dev container
  3. Run poetry shell
  4. Run poetry install --with test
  5. Run poetry run pytest

License

This project is licensed under a free, open-source license.

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

simplestate-0.1.2.tar.gz (6.8 kB view details)

Uploaded Source

Built Distribution

simplestate-0.1.2-py3-none-any.whl (7.8 kB view details)

Uploaded Python 3

File details

Details for the file simplestate-0.1.2.tar.gz.

File metadata

  • Download URL: simplestate-0.1.2.tar.gz
  • Upload date:
  • Size: 6.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for simplestate-0.1.2.tar.gz
Algorithm Hash digest
SHA256 233b5c04ba16c375acf1ebda73d90af4973d409c672187da0e2cc6434b0634fe
MD5 a6fe69a6a214445beb66bd1af46788ae
BLAKE2b-256 166aa5ea0b4b82ef75016e5bfa734e7f7770891d26e015381c24c24b0fc93fe7

See more details on using hashes here.

File details

Details for the file simplestate-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: simplestate-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 7.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for simplestate-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 fefe82480fa94c46c3842d54d1f5551654b37b5c338d50a1a91f09b9ee4e29fa
MD5 df2a78426d7dba89270ccbb7205353b3
BLAKE2b-256 31631aabbe128edb582de4000eb5fce4048527ea4ba73f233c1c6e2e5d2bf1bc

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