python-scripts/scripts/Screen_Shot/screen_shot.py
2022-09-25 15:02:44 +04:30

15 lines
439 B
Python

import pyautogui
from time import sleep
def screenshot_fun():
print("Screenshot program runs on console\nchange the sleep time if you can the screenshot captured the terminal also")
sleepTimer = 2
print(f"You've {sleepTimer} to minimize the terminal window")
sleep(sleepTimer)
print("Captured the screen now")
screenshot_img = pyautogui.screenshot()
screenshot_img.save("screen.png")
if __name__ == '__main__':
screenshot_fun()