Re: Need help in Py2exe

2006-10-19 Thread Kirt
> > there's a page on the py2exe site about tweaks necessary for specific > modules: > > http://www.py2exe.org/index.cgi/WorkingWithVariousPackagesAndModules > > look for: > > If you're getting File "xml\sax\saxexts.pyc", line 77, in > make_parser; xml.sax._exceptions.SAXReaderNotAv

Re: Need help in Py2exe

2006-10-19 Thread Fredrik Lundh
Kirt wrote: > --- > When i run this as python setup.py py2exe. I get an main.exe file in > dist folder. But when i run the file i get an error -- > Traceback (most recent call last): > File "main.py", line 7, in ? > Fi

Need help in Py2exe

2006-10-19 Thread Kirt
I have a simple scrips that Parses a XML file and prints its element. 1)Main.py 2)Handler.py 3)test.xml The scripts works fine from comand prompt. Now i wanted to convert it to an exe. So i wrote a setup.py scripts as folows: #-Setup.py--