Friendly state machines for python.
Go to file
Joshua Harlow 64c51a554c Ensure machine special method(s) include in generated docs
Without explicitly mentioning that it should have its docs
generated sphinx won't generate docs for it, so ensure that
we list __iter__ and __contains__ so that it does get
generated docs.

Also fixes 'default_start_state' docs which were not showing
up since they were on the setter method vs the getter method.

Change-Id: I83d02a3604678d16b16f6da5384ff10543af850f
2016-01-07 13:01:52 -08:00
automaton Ensure machine special method(s) include in generated docs 2016-01-07 13:01:52 -08:00
doc/source Ensure machine special method(s) include in generated docs 2016-01-07 13:01:52 -08:00
.coveragerc Added code coverage section to tox 2015-10-05 17:10:31 -04:00
.gitignore Added code coverage section to tox 2015-10-05 17:10:31 -04:00
.gitreview Revamp repo to match openstack repos 2015-06-05 17:18:17 -07:00
.testr.conf Revamp repo to match openstack repos 2015-06-05 17:18:17 -07:00
CONTRIBUTING.rst Add code repo, mail list, and IRC to CONTRIBUTING 2015-06-24 20:34:47 +00:00
HACKING.rst Revamp repo to match openstack repos 2015-06-05 17:18:17 -07:00
LICENSE Initial commit 2014-12-02 22:38:57 -08:00
README.rst Enhance the README 2015-09-24 21:39:13 +00:00
babel.cfg Revamp repo to match openstack repos 2015-06-05 17:18:17 -07:00
requirements.txt Updated from global requirements 2015-09-17 12:10:54 +00:00
setup.cfg docs - Set pbr 'warnerrors' option for doc build 2015-09-24 21:46:09 -04:00
setup.py Updated from global requirements 2015-09-17 12:10:54 +00:00
test-requirements.txt Updated from global requirements 2015-11-19 15:43:40 +00:00
tox.ini Put py34 first in the envlist order of tox ,remove py33 2015-12-23 07:05:39 +05:30

README.rst

Automaton

Latest Version

Downloads

Friendly state machines for python. The goal of this library is to provide well documented state machine classes and associated utilities. The state machine pattern (or the implemented variation there-of) is a commonly used pattern and has a multitude of various usages. Some of the usages for this library include providing state & transition validation and running/scheduling/analyzing the execution of tasks.