Metadata-Version: 2.1
Name: state_machine_py
Version: 17.0.0
Summary: A state diagram machine package
Home-page: https://github.com/muzudho/state-machine-py
Author: muzudho
Author-email: muzudho1@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/muzudho/state-machine-py/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# state-machine-py

状態遷移マシン

## Install

```shell
# Windows
python.exe -m pip install state_machine_py
```

## Example

* Homepage
  * 📂tests
    * 📂[rock_paper_scissors](https://github.com/muzudho/state-machine-py/tree/main/tests/rock_paper_scissors) - じゃんけん
    * 📂[edge_walk](https://github.com/muzudho/state-machine-py/tree/main/tests/edge_walk) - ツリー構造のエッジ
    * 📂[two_machines_catchball](https://github.com/muzudho/state-machine-py/tree/main/tests/two_machines_catchball) - 複数のステートマシンの実行

```shell
python.exe -m tests.rock_paper_scissors.main
python.exe -m tests.edge_walk.main
python.exe -m tests.two_machines_catchball.main
```

## Skill up

* 📖 [State machine Practice](https://github.com/muzudho/py-state-machine-practice)


