Interface for the Visual Representation and Debugging of the MASPY Framework
To install the interface MASPY-GUI
pip install maspy-gui
pip install maspy-gui -U
-
Choose a MASPY implementation to add the interface
-
Import the interface
from gui.start import start_interface- Add in the first line of your main:
def main():
Admin(listener_log=True)- Comment your start_system() and add start_interface()
#Admin().start_system()
start_interface()The examples are based on the original files found in MASPY - Examples, and have been adapted to include the interface.