diff --git a/Scripts/Miscellaneous/Python Clicker/Code/clicker.py b/Scripts/Miscellaneous/Python Clicker/Code/clicker.py new file mode 100644 index 000000000..50d39bca3 --- /dev/null +++ b/Scripts/Miscellaneous/Python Clicker/Code/clicker.py @@ -0,0 +1,14 @@ +import pyautogui +import time + + +def main(): + # Set a Sleep Time + time.sleep(5) + # Set a for Loop + for _ in range(200): + pyautogui.leftClick(467,517) + + +if __name__ == "__main__": + main() diff --git a/Scripts/Miscellaneous/Python Clicker/Preview/Preview.png b/Scripts/Miscellaneous/Python Clicker/Preview/Preview.png new file mode 100644 index 000000000..bb8b86dc0 Binary files /dev/null and b/Scripts/Miscellaneous/Python Clicker/Preview/Preview.png differ diff --git a/Scripts/Miscellaneous/Python Clicker/Preview/Test #1.png b/Scripts/Miscellaneous/Python Clicker/Preview/Test #1.png new file mode 100644 index 000000000..36690d0fb Binary files /dev/null and b/Scripts/Miscellaneous/Python Clicker/Preview/Test #1.png differ diff --git a/Scripts/Miscellaneous/Python Clicker/Readme.md b/Scripts/Miscellaneous/Python Clicker/Readme.md new file mode 100644 index 000000000..8ec0f4f28 --- /dev/null +++ b/Scripts/Miscellaneous/Python Clicker/Readme.md @@ -0,0 +1,40 @@ +# Python Clicker +A Python-Based Program which allows you to Left-Click on Screen at a Tremendous speed. + +[![forthebadge](https://forthebadge.com/images/badges/made-with-python.svg)](https://forthebadge.com) +[![forthebadge](https://forthebadge.com/images/badges/open-source.svg)](https://forthebadge.com) + +## General Info +This Program used Pyautogui to Left-Click at Specified Coordinates +of the Screen. + +## Requirements +To use Python Clicker, You need the following Pre-Requisites: +* Python 3.6 - 3.8 +* Pyautogui +* Pip + +## Installation +In order to use the Python Clicker. Clone this Repository by: + + `git clone https://github.com/Python-World/Python_and_the_Web.git` + +Installation of Pyautogui can be done by the command: +`pip install pyautogui` + +## Usage +After you have cloned this repository, Change your directory to `/Python_and_the_Web/Scripts/Miscellaneous/Python Clicker/Code` + +You can do this by : + +` cd /Python_and_the_Web/Scripts/Miscellaneous/Python Clicker/Code` + +To Run the Code, Type +`python3 clicker.py` + +**P.S : The Code gives you 5 seconds to open the site where you want to click. If not opened by then, The Program will start clicking randomly on the Screen. It is best to open the website before running and quicly switching to the site after typing the command** + +## License +[MIT](https://mit-license.org) + +#### Created by [@Cheemashyper](https://github.com/Cheemashyper) - Feel Free to Contact me Anytime! diff --git a/Scripts/Miscellaneous/Python Clicker/requirements.txt b/Scripts/Miscellaneous/Python Clicker/requirements.txt new file mode 100644 index 000000000..c5353b6af --- /dev/null +++ b/Scripts/Miscellaneous/Python Clicker/requirements.txt @@ -0,0 +1 @@ +PyAutogui==0.9.1