Metadata-Version: 2.1
Name: autoclicker
Version: 0.2
Summary: A simple project to auto control mouse.
Home-page: https://github.com/Zurek92/autoclicker
Author: Dawid Żurawski
Author-email: dawid.zurawski@protonmail.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: click (==7.0)
Requires-Dist: pyautogui (==0.9.39)
Requires-Dist: python3-xlib (==0.15)

# Autoclicker
A simple project to auto control mouse.

#### Install
``pip install autoclicker``

you might need some pyautogui dependencies different from the system: https://pyautogui.readthedocs.io/en/latest/install.html#installation

#### Prepare and install whl file (developer mode)
1. ``make venv`` creates virtualenv which allow use autoclicker in developer mode.
2. ``make install_dependencies`` to install required dependencies in system linux
3. ``make create_whl`` creates whl file in ``dist/``
4. to install autoclicker just run: ``pip install <name>.whl``


#### Usage
``autoclicker scroll`` uses middle mouse button to scroll up or down

Options:
* -s (--scrolls) integer, required parameter which set how many times click middle button and in which direction, e.g.: ``-s 10``, ``-s -10``

``autoclicker clicker`` uses left mouse button

Options:
* -s (--screen_location) - by default if this option is not set location is taken from current mouse position e.g.: ``-s 500 450``
* -r (--repeats) - how many times script should click, e.g.: ``-r 10``
* -t (--time_break) - average time breaks between clicks in seconds e.g.: ``-t 15``
* -d (--time_different) - time deviation from the average, e.g.: ``-t 10 -d 2``, real time will be between 8 and 12 seconds


