import pyautogui
window = [ x for x in pyautogui.getAllWindows()]
for i in window: if 'Google Chrome' in i.title: i.hide()
how to unhide window ????