Wrapper around pyautogui for automating mouse and keyboard - plus some new functions
Project description
pyrobogui
Wrapper around pyautogui - plus some new functions
Build on top of pyautogui but with some extra features:
- timeouts,
- setup,
- aproximate match of images (install manually opencv and numpy if you need this feature),
- can be oriented to a screen coordonate automation or screen images automation or both
Usage:
Installation
pip install pyrobogui
If you are using MAC or Linux checkout pyautogui documentation on how to install tkinter.
Automate the boring stuff book
Usage
from pyrobogui import robo, pag
# use the robo.method() to do what you need
# pag - is the pyautogui instance, if you need more barebones features
Mouse functions
robo.click(image=None,
x=None,
y=None,
offsetUp=None,
offsetDown=None,
offsetLeft=None,
offsetRight=None,
imageError=None,
timeout=1800,
full_match=False)
Describing the parameters:
Put either:
- image - path to image
or
- x - coodonate number
- y - coordonate number
Additionally you have:
- offsetUp - make action up from the center specified
- offsetDown - make action down from the center specified
- offsetLeft - make action down from the center specified
- offsetRight - make action down from the center specified
- imageError - raise error when this image is found in screen while waiting for the image needed
- timeout - if the seconds specified passes without the image needed to appear then raise error
These parameters are available for the bellow functions too:
- rightClick
- doubleClick
- hover
- dragTo
Scroll functions
robo.scrollUp(320)
Insert a number for the functions bellow (scroll is noticeable for values over 120)
- scrollUp
- scrollDown
- scrollLeft
- scrollRight
Keyboard functions
robo.write (text,
image=None,
x=None,
y=None,
offsetUp=None,
offsetDown=None,
offsetLeft=None,
offsetRight=None,
imageError=None,
timeout=1800,
full_match=False)
Where:
- text - the string to write on the center of the image or the coordinates specified
For a list of key names you can press check pyautogui documentation
robo.press(keys) # Ex: robo.press("ctrl, c")
- keys - the hotkeys you want to press, you can press max 3 keys (ex: robo.press("ctrl, alt, delete"))
Additional functions
Start setup to get the x,y coordinates and RGB color from the screen Useful when you want to start an automation process based on x,y coodinates(xy positions must be the same each time the process runs!)
robo.setup()
Wait a number of seconds equivalent to > time.sleep(x)
robo.waitSeconds(5) #wait 5 seconds
Get coordinates of the image:
robo.getImageLocation(image, full_match=False)
- image - image you need to find on screen
- full_match - by default if will reduce the match if not found on screen down to 70%. If you set it to True it will try to find on screen an identical match size, colors etc.
Get to coordonates for the images needed.
You can count images of the same type on the screen from UP to DOWN, and LEFT to RIGHT.
robo.imageNeddle(image, imageNr='last')
Useful for casses where you have images that look the same on the screen but they are positioned in different places.
For example let's say the you have a form with a lot of radio buttons and you want to click on the 5th radio button, you will do:
robo.imageNeddle("./img/radio_button.png", 5)
Also you the options for imageNr parameter:
- imageNr=5 - returns the specified counted image
- imageNr='last'
- imageNr='first'
- imageNr='all' - returns a list of image locations
Wait functions
robo.waitColorToAppear(xyrgb, imageError=None, timeout=1800) #ex:robo.waitColorToAppear("100, 200, 255, 255, 255")
robo.waitColorToDisappear(xyrgb, imageError=None, timeout=1800)
- xyrgb - a string like this "100, 200, 255, 255, 255"
- imageError - if this image apprears on screen the function will stop
- timeout - wait for the image to appear a specific number of seconds if that seconds pass then raise error
robo.waitImageToAppear(image, imageError=None, timeout=1800, full_match=False)
robo.waitImageToDisappear(image, imageError=None, timeout=1800, full_match=False)
- image - image you need on screen
- imageError - stop if this image is found
- timeout - stop if takes too long time
- full_match - by default if will aproximate the image on screen by 70% if you change it to True it will match it 100%
full_match - not on all PC's the rgb colors, image size are the same, they may vary a little; that's way full_match is False by default
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyrobogui-0.0.8.tar.gz
.
File metadata
- Download URL: pyrobogui-0.0.8.tar.gz
- Upload date:
- Size: 6.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.24.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f49a171ee8343e2bc8653dbc840a089f873ac599164352672f7d1f7f59775b16 |
|
MD5 | 7806580803a42e499e5773ea3b325e75 |
|
BLAKE2b-256 | 6982f5daa3366fc58838b5be357406d8b4c548085c9f523fd303895b08099b41 |
File details
Details for the file pyrobogui-0.0.8-py3-none-any.whl
.
File metadata
- Download URL: pyrobogui-0.0.8-py3-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.24.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e8f3eed6019bcbaed014337a70db6372c1e55bd724382b746ad576922b9f01c4 |
|
MD5 | 026237eb05f40ce2ea2014d4a11fb726 |
|
BLAKE2b-256 | 5f363769ce2966de77c09e3331a043ccf2d2a24b07574836f5156b9db6ef93e7 |