-
Notifications
You must be signed in to change notification settings - Fork 0
Home
themixray edited this page Nov 21, 2021
·
13 revisions
- Download the library
- Put library near the
main.py
- Complete!
The folder tree should look like this
project
├───main.py
└───ew32g
├───console.py
├───window.py
└───__init__.py
Resize and center calculator.
import ew32g
win = ew32g.window('Calculator')
win.resize(456,654)
win.center()
Maximize and screenshot console.
import ew32g
ew32g.console.maximize()
ew32g.console.screenshot('console.png')