Skip to content

alfred-hedgehog/MacroPolo

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

MacroPolo is a python module that can be used in order to automate processes.

While it supports simple mouse movement and key strokes simulation, what really makes MacroPolo different from other macro operations libraries or programs is that it can powerfully search your screen for pixels.

This means that you can automate many tasks depending on the current color of pixels on your screen. Using this technic, automating complex processes (like betting at a roulette game, which is not encouraged) becomes very easy.

Example usage to get you started:

import macropolo
macro = macropolo.Macro()
macro.move_cursor_to(1, 1)

All the functions inside the module include detailed description of their functionality.

You can access this description either by opening the module file on a text editor and looking at the first few lines of each function, or through python:

import macropolo
macro = macropolo.Macro()
macro.middle_click_to.__doc__

The above outputes:

'Middle clicks the cursor to the x, y coordinates'

About

A python library for macro operations

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%