#### Running without console on Windows
https://stackoverflow.com/questions/1689015/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