Wxpython Changer la taille de la fenêtre
wx.SetSize(frm, width, height)
Somebody32x2
wx.SetSize(frm, width, height)
from win32gui import FindWindow, MoveWindow
hwnd = FindWindow(None, 'Window Title')
xSize, ySize = 322, 546
MoveWindow(hwnd, 0, 0, xSize, ySize, True)
import pygetwindow
win = pygetwindow.getWindowsWithTitle('Notepad')[0]
win.size = (640, 400)