Messages
Topics
Lists
Groups
Marketplace
Jobs
Avanya Shina
4 years ago
In this tutorial we will learn how Take screenshot using Python with the help of pyautogui library.
To install pyautogui == pip install pyautogui
import pyautogui im = pyautogui.screenshot() im.save(r"c:\path\to\my\screenshot.png")
#python