# Small example of nissy_python_module usage # See the solve.py example for more details on how this works import os, sys sys.path.append(os.getcwd()) import nissy_python_module as nissy cube = nissy.applymoves(nissy.solved_cube, "R' U' F"); print("Cube after the moves R' U' F:") print(cube)