Skip to main content

Pythonic state machines

Project description

A state machine implementation for Python — which isn’t solely designed to parse strings!

why state machines?

They’re cool! Also, easy to reason about — a state machine design enables you to compartmentalize responsibilites in a way that functions simply don’t.

why “solid”?

It’s a convoluted name: it’s a state machine library written in python; snake is another word for python that sounds like state — and Solid Snake is a fairly well known character who kicks serious butt. Thus, “solid”.

hello, world

Let’s define a super-simple state machine with two states: one that prints “Hello” and one that prints “World”:

from solid.machines import BaseMachine
from solid.states import BaseState, is_entry_state
from solid.transition import to


class HelloMachine(BaseMachine):

  @is_entry_state
  class Hello(BaseState):
    def body(self):
      print "Hello"

      return to(HelloMachine.World)

  class World(BaseState):
    def body(self):
      print "World"

From an intertpreter (or whatever):

>>> h = HelloMachine()
>>> h.start()
Hello
World
>>>

and that’s pretty much all there is to it.

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

solid-0.2.0.tar.gz (6.7 kB view details)

Uploaded Source

File details

Details for the file solid-0.2.0.tar.gz.

File metadata

  • Download URL: solid-0.2.0.tar.gz
  • Upload date:
  • Size: 6.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for solid-0.2.0.tar.gz
Algorithm Hash digest
SHA256 93eaf438c38175f429bdadaf0122fc06fd71e39f76fb96261215c2b824db560e
MD5 9e85c5ab00cbd1c035d54180fc8a0c60
BLAKE2b-256 34afb9645f5120d93452ad356f23f9d209063c7fcfe780e3cc4c3ac36e707d35

See more details on using hashes here.

Provenance

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