Created
March 31, 2022 16:19
-
-
Save kingjr/18725e3ac0a178f4b7bf9f41f7933f28 to your computer and use it in GitHub Desktop.
Revisions
-
kingjr created this gist
Mar 31, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ from pynput.mouse import Controller import time mouse = Controller() for i in range(10_000_000): mouse.move((i % 2)*2-1, 0) time.sleep(60.)