>
> 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
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
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--