Run Python script without Windows console appearing Run Python script without Windows console appearing windows windows

Run Python script without Windows console appearing


pythonw.exe will run the script without a command prompt. The problem is that the Python interpreter, Python.exe, is linked against the console subsystem to produce console output (since that's 90% of cases) -- pythonw.exe is instead linked against the GUI subsystem, and Windows will not create a console output window for it unless it asks for one.

This article discusses GUI programming with Python, and also alludes to pythonw.exe. It also helpfully points out that if your Python files end with .pyw instead of .py, the standard Windows installer will set up associations correctly and run your Python in pythonw.exe.

In your case it doesn't sound like a problem, but reliance upon pythonw.exe makes your application Windows-specific -- other solutions exist to accomplish this on, say, Mac OS X.


If you name your files with the ".pyw" extension, then windows will execute them with the pythonw.exe interpreter. This will not open the dos console for running your script.


I tried methods above, however, a console stills appears and disappears quickly due to a Timer in my script. Finally, I found following code:

import ctypesimport osimport win32processhwnd = ctypes.windll.kernel32.GetConsoleWindow()      if hwnd != 0:          ctypes.windll.user32.ShowWindow(hwnd, 0)          ctypes.windll.kernel32.CloseHandle(hwnd)    _, pid = win32process.GetWindowThreadProcessId(hwnd)    os.system('taskkill /PID ' + str(pid) + ' /f')