A Python module to make speedcubing projects a piece of cake.
pip install PyCubing
⚠️ Note: PiPy is not working for this project yet!!!
This code generate a scramble for a 2x2x2 cube:
from PyCubing import GetScramble
if __name__ == "__main__":
scramble: list = GetScramble.Cube2x2x2()
print(f'A 2x2x2 Scramble: {scramble}')