This article describes how to create a hidden window sub-process in python in windows, and describes how to use the subprocess module to operate processes in Python, for more information about how to create a hidden window sub-process in python in windows, see the following example. Share it with you for your reference. The specific implementation method is as follows:
Import subprocessIS_WIN32 = 'win32 'in str (sys. platform ). lower () def subprocess_call (* args, ** kwargs): # also works for Popen. # It creates a new * hidden * window, # so it will work in frozen apps (.exe ). if IS_WIN32: startupinfo = subprocess. STARTUPINFO () startupinfo. dwFlags = subprocess. CREATE_NEW_CONSOLE | subprocess. STARTF_USESHOWWINDOW startupinfo. wShowWindow = subprocess. SW_HIDE kwargs ['startupinfo'] = startupinfo retcode = subprocess. call (* args, ** kwargs) return retcode
I hope this article will help you with Python programming.