glenwood
0
Q:

how to hide command console python

# pip install pywin32 -> This will install the libs that are required
import win32gui, win32con

hide = win32gui.GetForegroundWindow()
win32gui.ShowWindow(hide , win32con.SW_HIDE)
2
import ctypes
ctypes.windll.user32.ShowWindow( ctypes.windll.kernel32.GetConsoleWindow(), 0 )
-2
Simply save it with a .pyw extension. This will prevent the console window from opening.
0

New to Communities?

Join the community