0

Possible Duplicate:
How to hide console window in python?

I have a simple script with one messagedialog only...

how can I hide the console from it when I execute the app?

Community
  • 1
  • 1
Bruno 'Shady'
  • 4,028
  • 11
  • 52
  • 73

1 Answers1

3

Execute the script using pythonw.exe rather than python.exe. You can set that up to happen automatically by giving the script the extension .pyw rather than .py.

JAB
  • 20,077
  • 6
  • 67
  • 79