Skip to content
This repository was archived by the owner on Dec 22, 2023. It is now read-only.

Added Python Clicker #239

Merged
merged 6 commits into from
Oct 5, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions Scripts/Miscellaneous/Python Clicker/Code/clicker.py
Original file line number Diff line number Diff line change
@@ -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()
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 40 additions & 0 deletions Scripts/Miscellaneous/Python Clicker/Readme.md
Original file line number Diff line number Diff line change
@@ -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!
1 change: 1 addition & 0 deletions Scripts/Miscellaneous/Python Clicker/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
PyAutogui==0.9.1