How to get started making bots with pyautogui
This is a botting tutorial for beginners. I make a lot of bots on my channel using pyautogui and python, and some people have asked me what I use and how to get started making bots. This botting tutorial for beginners will help anyone with some background knowledge in python to get started.
Link to the docs page: https://pyautogui.readthedocs.io/en/l...
Coordinate finder:
import pyautogui, sys
print('Press Ctrl-C to quit.')
try:
while True:
x, y = pyautogui.position()
positionStr = 'X: ' + str(x).rjust(4) + ' Y: ' + str(y).rjust(4)
print(positionStr, end='')
print('\b' * len(positionStr), end='', flush=True)
except KeyboardInterrupt:
print('\n')
twitter: / notbusinesscas1
Edited by Jason. Thanks Jason.
This is a beginners guide to pyautogui and a begginners guide to making bots.