Python Robot API for the CamJam Edukit 3 by Red River Software
fromcilantroimportRobotfromtimeimportsleep# Create instance of robotrobot=Robot()
# Go forward for 5 seconds then stoprobot.motors.m0=100robot.motors.m1=100sleep(5)
robot.motors.m0=0robot.motors.m1=0Create source distribution
python setup.py sdist
Create wheel
python setup.py bdist_wheel
Upload to pypi
twine upload dist/*