Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mechiuw/python.screenshot-demo
Screenshot app demo
https://github.com/mechiuw/python.screenshot-demo
Last synced: 3 days ago
JSON representation
Screenshot app demo
- Host: GitHub
- URL: https://github.com/mechiuw/python.screenshot-demo
- Owner: Mechiuw
- Created: 2024-08-05T03:44:54.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-08-05T05:28:12.000Z (3 months ago)
- Last Synced: 2024-08-05T07:40:41.041Z (3 months ago)
- Language: Python
- Size: 122 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Screenshot App
## Overview
The **Screenshot App** is a simple Python application that allows users to take and save screenshots. This application features a user-friendly GUI built with `tkinter` and captures screenshots using the `pyscreenshot` library.
![Screenshot of the App](https://github.com/Mechiuw/Python.ScreenShot-DEMO/blob/master/assets/full%20demo.png)
## Features
- **Capture Full Screen**: Take a screenshot of the entire screen.
- **Save Anywhere**: Choose the location to save the screenshot and select the file format.
- **Simple GUI**: User-friendly interface created with `tkinter`.## Requirements
- **Python**: Make sure you have Python installed (version 3.6 or above recommended).
- **Libraries**:
- `pyscreenshot`
- `Pillow`
- `tkinter` (comes with Python)You can install the required libraries using `pip`:
```sh
pip install pyscreenshot Pillow