Skip to main content

No project description provided

This project has been archived.

The maintainers of this project have marked this project as archived. No new releases are expected.

Project description

[!WARNING]
This is a work in progress and is not ready for production use yet. The API and implementation are subject to changes on minor versions.
See the Roadmap for planned features and the Contributing section for ways to contribute.

Contributors Forks Stargazers Issues LinkedIn


Logo

StateForward

StateForward Python: Simplifying Complexity, One State at a Time.
Explore the docs

View Demo · Report Bug · Request Feature

Table of Contents

About StateForward Python

StateForward Python is where code complexity meets simplicity. This library is your ally in evolving spaghetti code into elegant, robust state machines. Say goodbye to the dense forest of if-else statements and welcome a world where adding features doesn’t mean unraveling a complex knot.

With StateForward Python, you’re building on solid ground. Your code becomes a clear map of states and transitions, making it easily extendable and a joy to maintain. It's about writing software that grows with grace, ensuring that your project's future is as structured and reliable as its present.

(back to top)

Getting Started

This is an example of how you may give instructions on setting up your project locally. To get a local copy up and running follow these simple example steps.

Installation

Pip

  1. Install the package
    pip install stateforward
    

Manually

  1. Clone the repo
    git clone https://github.com/stateforward/stateforward_python.git
    
  2. Initialize virtual environment
    poetry shell 
    
  3. Install dev dependencies
    poetry install
    

(back to top)

Usage

import stateforward as sf
import asyncio


class OnEvent(sf.Event):
    pass


class OffEvent(sf.Event):
    pass


class LightSwitch(sf.AsyncStateMachine):
    class On(sf.State):
        @sf.decorators.behavior
        async def entry(self, event: OnEvent):
            print("Light on entry")

        @sf.decorators.behavior
        async def exit(self, event: OffEvent):
            print("Light on exit")

    class Off(sf.State):
        @sf.decorators.behavior
        async def entry(self, event: OnEvent):
            print("Light off entry")

        @sf.decorators.behavior
        async def exit(self, event: OffEvent):
            print("Light off exit")

    initial = sf.initial(Off)
    transitions = sf.collection(
        sf.transition(OnEvent, source=Off, target=On),
        sf.transition(OffEvent, source=On, target=Off),
    )


async def main():
    # instantiate a light switch
    light_switch = LightSwitch()
    # start the interpreter and wait for it to be settled
    await light_switch.interpreter.start()
    # output the current states of the state machine
    print(light_switch.state)
    # dispatch a OnEvent to the state machine
    await sf.send(OnEvent(), light_switch)
    # output the current states of the state machine
    print(light_switch.state)
    # dispatch a OffEvent to the state machine
    await sf.send(OffEvent(), light_switch)
    print(light_switch.state)


asyncio.run(main())

For more examples, please refer to the Documentation

(back to top)

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

(back to top)

License

Distributed under the MIT License. See LICENSE.txt for more information.

(back to top)

Contact

Your Name - @twitter_handle - email@email_client.com

Project Link: https://github.com/github_username/repo_name

(back to top)

Acknowledgments

(back to top)

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

stateforward-0.2.94.tar.gz (346.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

stateforward-0.2.94-py3-none-any.whl (133.0 kB view details)

Uploaded Python 3

File details

Details for the file stateforward-0.2.94.tar.gz.

File metadata

  • Download URL: stateforward-0.2.94.tar.gz
  • Upload date:
  • Size: 346.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.11.5 Darwin/23.2.0

File hashes

Hashes for stateforward-0.2.94.tar.gz
Algorithm Hash digest
SHA256 fddcfb8a1b5c2968df22d81e1815dcf851cd761f5522303f738673bbb618ba0a
MD5 f96efc09b0f54666f88d9594451cc37d
BLAKE2b-256 11f6a3ca4fbf6da811f9514afa36f02a590aba16868855bd65569d9d66eb311d

See more details on using hashes here.

File details

Details for the file stateforward-0.2.94-py3-none-any.whl.

File metadata

  • Download URL: stateforward-0.2.94-py3-none-any.whl
  • Upload date:
  • Size: 133.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.11.5 Darwin/23.2.0

File hashes

Hashes for stateforward-0.2.94-py3-none-any.whl
Algorithm Hash digest
SHA256 bc88d3d07ca25977b6a919a8330ba6935b90e8115a0f35982c96193a4e2c5f94
MD5 d2828f1268a11c9d347d4f5d305f4a6f
BLAKE2b-256 8cc62d805f16fec76d65703e01dd90bec2960aac0c65f574933afb1c26ea164c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page