remove screenshot

This commit is contained in:
ArshErgon 2022-10-02 14:42:31 +04:30
parent 12cce8810d
commit 5b3581eeed
3 changed files with 0 additions and 32 deletions

View File

@ -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

View File

@ -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

View File

@ -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()