Skip to content
themixray edited this page Nov 21, 2021 · 13 revisions

How To Install

  1. Download the library
  2. Put library near the main.py
  3. Complete!

The folder tree should look like this

project
├───main.py
└───ew32g
    ├───console.py
    ├───window.py
    └───__init__.py

Getting Started

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')
Clone this wiki locally