Wendigo is a RPA library for Windows (64 bit).
Project description
WendigoPy
WendigoPy is a RPA library for Windows (64 bit).
Caution
About Simulation
WendigoPy uses SendInput to simulate inputs (implemented as WendigoCs).
If you're new to it, please be careful of the things below.
- It does NOT wait until the inputs are processed.
- The inputs which you sent can NOT be cancelled.
- So do NOT send many inputs at once, nor at the same time.
Once you've done it, the inputs which you sent will be unstoppable. - Pressed keys must be released.
If you left some keys pressed in your program, press and release the keys manually to recover. - Some kinds of applications ignore this type of simulation.
About Exit
If something went wrong, you should stop Wendigo immediately.
These are the ways to exit.
- Press the keys to exit which are shown in the console.
The keys are two shift keys (LShift+RShift) if you didn't change them. - Right click on the tasktray icon indicates "W" and Choose "Exit".
- If it's urgent, press Ctrl+Alt+Del and kill the process by Task Manager.
This way blocks sending new inputs, but remember what I told you before "the inputs which you sent will be unstoppable".
Requirements
- Windows (64 bit)
Testing on Windows 10. - Python 3
Testing on 3.8.0. - Tesseract
If you wanna use the OCR functions.
Installation
pip install wendigo
Usage
Wendigo is an event driven application.
from wendigo import Wendigo as w
# Do something here
# Blocks until Wendigo is stopped.
w.run()
Hook
Hook events of keyboard or mouse like this.
It works even if another form is active.
from typing import List
from wendigo import Keys, Wendigo as w
from wendigo.device import DeviceState
from wendigo.screen import TargetForm
def key_up(state: DeviceState):
# Shows which keys are pressed.
print(state.key.keys)
# Shows where the cursor is.
print(state.mouse.position)
# Shows the state of wheel.
print(state.mouse.scroll)
# Runs key_up when you release Ctrl+Alt+W.
w.event_dispatcher.key_up("key_up", [Keys.ControlKey, Keys.AltKey, Keys.W], key_up)
def mark_by_drag(targets: List[TargetForm]):
# Shows area where you marked.
print(targets[0].area)
# Runs mark_by_drag when you drag with Ctrl.
w.target_marker.mark_by_drag(mark_by_drag, keys=[Keys.ControlKey])
# Blocks until Wendigo is stopped.
w.run()
Simulation
Simulate events of keyboard or mouse like this.
Make sure that you activated a text editor before you press the keys.
from wendigo import Keys, Point, Wendigo as w
from wendigo.device import DeviceState, Inputs
def key_up(state: DeviceState):
# Types "Hello World!".
w.event_simulator.type_text("Hello World!")
# Need more manual way?
# Let's type that again in another way.
w.event_simulator.simulate(Inputs() \
.key_press(Keys.Enter) \
.key_down(Keys.ShiftKey).key_press(Keys.H).key_up(Keys.ShiftKey) \
.key_press(Keys.E).key_press(Keys.L, n=2).key_press(Keys.O) \
.key_press(Keys.Space) \
.key_down(Keys.ShiftKey).key_press(Keys.W).key_up(Keys.ShiftKey) \
.key_press([Keys.O, Keys.R, Keys.L, Keys.D]) \
.key_down(Keys.ShiftKey).key_press(Keys.D1).key_up(Keys.ShiftKey)
)
# Move cursor to (0, 0).
w.event_simulator.point_absolute(Point(0, 0))
# Runs key_up when you release Ctrl+Alt+W.
w.event_dispatcher.key_up("key_up", [Keys.ControlKey, Keys.AltKey, Keys.W], key_up)
# Blocks until Wendigo is stopped.
w.run()
Others
Wendigo has other workers.
- event_imitator
Records inputs to a file and plays it. - form_controller
Does something to forms like make them active and capture their graphics. - target_seeker
Finds targets on the screen by OpenCV. - text_reader
Reads text from an image by Tesseract. - time_keeper
It's just a synchronous timer.
License
This library is released under the Apache License 2.0.
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 Wendigo-0.1.0.tar.gz
.
File metadata
- Download URL: Wendigo-0.1.0.tar.gz
- Upload date:
- Size: 40.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0.post20201006 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21d6aa790cf7d2ccada5addff66cacefa4af315fc1c2bbf0f206587def48426c |
|
MD5 | 78eb0c372d24ad8baf1905ff724e00f8 |
|
BLAKE2b-256 | 169164f691b0ec963a024ae552248bb1adab8797a5a053a08dc7098cb739160b |
File details
Details for the file Wendigo-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: Wendigo-0.1.0-py3-none-any.whl
- Upload date:
- Size: 53.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0.post20201006 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d10192fc265057172cd368e507ac270a767ccc96840563fde081449f5e193888 |
|
MD5 | 210ee23167755f02ae84b56b341d6110 |
|
BLAKE2b-256 | 2adde372a8487313293ac6f4a4ba033c3a8038a3c0e65c6d0b16dcb5c8977e95 |