I have a python program that run without console in app.pyw file format. I converted that program to .exe file using py2exe using this script
from distutils.core import setup
import py2exe
setup(console=['app.pyw'])
now the app.exe application working fine,but app will not work without console window. I want to run my app without console window in .exe format