I'm using pyautogui to take few screenshots per second and save them. pyautogui save the screenshot without the cursor, can I take the screenshot with it by default (without edit the photo)?
This is the code I'm using:
import time
import pyautogui
def takeScreenshot(count):
myScreenshot = pyautogui.screenshot()
myScreenshot.save(r'imgs\screenshot_'+str(count)+'.png')
time.sleep(0.2)
takeScreenshot(count+1)
takeScreenshot(0)