From 5b3581eeedb508f5781e5cc04f284e3d922255d9 Mon Sep 17 00:00:00 2001 From: ArshErgon Date: Sun, 2 Oct 2022 14:42:31 +0430 Subject: [PATCH] remove screenshot --- scripts/Screen_Shot/ReadMe.md | 9 --------- scripts/Screen_Shot/requirements.txt | 9 --------- scripts/Screen_Shot/screen_shot.py | 14 -------------- 3 files changed, 32 deletions(-) delete mode 100644 scripts/Screen_Shot/ReadMe.md delete mode 100644 scripts/Screen_Shot/requirements.txt delete mode 100644 scripts/Screen_Shot/screen_shot.py diff --git a/scripts/Screen_Shot/ReadMe.md b/scripts/Screen_Shot/ReadMe.md deleted file mode 100644 index 7ae6efd..0000000 --- a/scripts/Screen_Shot/ReadMe.md +++ /dev/null @@ -1,9 +0,0 @@ -## Screen Shot CLI proudly made with Python - -### Installation -``` -$ pip install -i requirements.txt -$ python3 screen_shot.py -``` - -> change the sleep time if for you its take time to minimize the Terminal window. Images will be save inside the present folder \ No newline at end of file diff --git a/scripts/Screen_Shot/requirements.txt b/scripts/Screen_Shot/requirements.txt deleted file mode 100644 index 36350b3..0000000 --- a/scripts/Screen_Shot/requirements.txt +++ /dev/null @@ -1,9 +0,0 @@ -MouseInfo==0.1.3 -PyAutoGUI==0.9.53 -PyGetWindow==0.0.9 -PyMsgBox==1.0.9 -pyperclip==1.8.2 -PyRect==0.2.0 -PyScreeze==0.1.28 -python3-xlib==0.15 -pytweening==1.0.4 diff --git a/scripts/Screen_Shot/screen_shot.py b/scripts/Screen_Shot/screen_shot.py deleted file mode 100644 index ac76c97..0000000 --- a/scripts/Screen_Shot/screen_shot.py +++ /dev/null @@ -1,14 +0,0 @@ -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()