I am reading and writing files to the 'py.exe' screen. I have a *.py script that I double click which pops up the 'py.exe' window, where I operate within.
Its all fine, but the default window dimensions are a bit landscape-y and I want to save having to "windows+leftcursor" all the time.
I want to change the default dimensions of the py.exe window to what I want them to be.
import easygui
filenames=easygui.fileopenbox('Welcome',default='c:\data\*.ers',multiple=True)
for filename in filenames:
with open(filename) as f:
print("\n\n" + filename + "\n\n", f)
py.exe
(possibly creating a copy of the shortcut initially).