Hide the console python code example
Example 1: python hide console
# pip install pywin32 -> This will install the libs that are required
import win32gui, win32con
hide = win32gui.GetForegroundWindow()
win32gui.ShowWindow(hide , win32con.SW_HIDE)
Example 2: how to hide command console python
import ctypes
ctypes.windll.user32.ShowWindow( ctypes.windll.kernel32.GetConsoleWindow(), 0 )
Example 3: hide console in python build
Simply save it with a .pyw extension. This will prevent the console window from opening.