472,353 Members | 1,886 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,353 software developers and data experts.

py2exe & pyxml

Does anyone know how to resolve the following problem that I'm getting in
Python 2.2 and 2.3?

PROBLEM: When I try to create a classReader object I get an exception:
"SAXReaderNotAvailable: No parsers found". This only happens when I run the
..EXE; it does not happen if I run the .PY file. When I'm running the .EXE
this exception doesn't happen immediately. It happens as soon as I try to
create a classReader object.

Please see the warnings that I get below when I create the .EXE:
**********
warning: py2exe: * The following modules were not found: warning: py2exe:
* Carbon.Folder warning: py2exe: * Carbon.Folders warning: py2exe: *
DateTime warning: py2exe: * Ft.Lib warning: py2exe: *
Ft.Lib.DumpBgTuple warning: py2exe: * Ft.__init__ warning: py2exe: *
SOCKS warning: py2exe: * XPathParserc warning: py2exe: *
ext.IsDOMString warning: py2exe: * ext.SplitQName warning: py2exe: *
fcntl warning: py2exe: * ic warning: py2exe: * mx.DateTime warning:
py2exe: * rourl2path warning: py2exe: * xml.xslt warning: py2exe: *
xml.xslt.ParsedPattern warning: py2exe:
************************************************ ***************


__________________________________________________ _______________
Try MSN Messenger 6.0 with integrated webcam functionality!
http://www.msnmessenger-download.com...g/reach_webcam
Jul 18 '05 #1
8 4594
"Kathleen Kudzma" <km******@hotmail.com> writes:
PROBLEM: When I try to create a classReader object I get an exception:
"SAXReaderNotAvailable: No parsers found". This only happens when I
run the .EXE; it does not happen if I run the .PY file. When I'm
running the .EXE this exception doesn't happen immediately. It
happens as soon as I try to create a classReader object.


You have to explicitly ask py2exe to include pyexpat in the
executable. RTFM.

Regards,
Martin
Jul 18 '05 #2

"Kathleen Kudzma" <km******@hotmail.com> wrote in message
news:ma**********************************@python.o rg...
Does anyone know how to resolve the following problem that I'm getting in
Python 2.2 and 2.3?

PROBLEM: When I try to create a classReader object I get an exception:
"SAXReaderNotAvailable: No parsers found". This only happens when I run the
.EXE; it does not happen if I run the .PY file. When I'm running the .EXE
this exception doesn't happen immediately. It happens as soon as I try to
create a classReader object.

Please see the warnings that I get below when I create the .EXE:
**********
warning: py2exe: * The following modules were not found: warning: py2exe:
* Carbon.Folder warning: py2exe: * Carbon.Folders warning: py2exe: *
DateTime warning: py2exe: * Ft.Lib warning: py2exe: *
Ft.Lib.DumpBgTuple warning: py2exe: * Ft.__init__ warning: py2exe: *
SOCKS warning: py2exe: * XPathParserc warning: py2exe: *
ext.IsDOMString warning: py2exe: * ext.SplitQName warning: py2exe: *
fcntl warning: py2exe: * ic warning: py2exe: * mx.DateTime warning:
py2exe: * rourl2path warning: py2exe: * xml.xslt warning: py2exe: *
xml.xslt.ParsedPattern warning: py2exe:
************************************************ ***************


Yes, I've just had the same problem -- using py3.2 and py2exe v0.4.2

After spending some time in a debugger following the execution path, I found
out that the module xml.sax.drivers2.drv_pyexpat is the one that is missing.
It gets loaded through a call to __import__ (see _xmlplus.sax.saxexts.py, line
42) which is why py2exe doesn't pick it up as being necessary.

All of which means it has to be explicitly included in the build. So, I was
able to solve the problem with the following setup.py command line:

python setup.py py2exe --includes xml.sax.drivers2.drv_pyexpat

I've no idea what Martin was referring to when he said RTFM, because I could
find nothing about this. (Then again, perhaps I'm misunderstanding what he
means by RTFM?)

--
Mike

Jul 18 '05 #3
"Mike Thompson" <none by e-mail> wrote in message news:<3f***********************@news.optusnet.com. au>...
"Kathleen Kudzma" <km******@hotmail.com> wrote in message
news:ma**********************************@python.o rg...
Does anyone know how to resolve the following problem that I'm getting in
Python 2.2 and 2.3?

PROBLEM: When I try to create a classReader object I get an exception:
"SAXReaderNotAvailable: No parsers found". This only happens when I run the
.EXE; it does not happen if I run the .PY file. When I'm running the .EXE
this exception doesn't happen immediately. It happens as soon as I try to
create a classReader object.

Please see the warnings that I get below when I create the .EXE:
**********
>warning: py2exe: * The following modules were not found: warning: py2exe:
>* Carbon.Folder warning: py2exe: * Carbon.Folders warning: py2exe: *
>DateTime warning: py2exe: * Ft.Lib warning: py2exe: *
>Ft.Lib.DumpBgTuple warning: py2exe: * Ft.__init__ warning: py2exe: *
>SOCKS warning: py2exe: * XPathParserc warning: py2exe: *
>ext.IsDOMString warning: py2exe: * ext.SplitQName warning: py2exe: *
>fcntl warning: py2exe: * ic warning: py2exe: * mx.DateTime warning:
>py2exe: * rourl2path warning: py2exe: * xml.xslt warning: py2exe: *
>xml.xslt.ParsedPattern warning: py2exe:
>************************************************ ***************


Yes, I've just had the same problem -- using py3.2 and py2exe v0.4.2

After spending some time in a debugger following the execution path, I found
out that the module xml.sax.drivers2.drv_pyexpat is the one that is missing.
It gets loaded through a call to __import__ (see _xmlplus.sax.saxexts.py, line
42) which is why py2exe doesn't pick it up as being necessary.

All of which means it has to be explicitly included in the build. So, I was
able to solve the problem with the following setup.py command line:

python setup.py py2exe --includes xml.sax.drivers2.drv_pyexpat

I've no idea what Martin was referring to when he said RTFM, because I could
find nothing about this. (Then again, perhaps I'm misunderstanding what he
means by RTFM?)


RTFM is tech jargon for "read the f**king manual".
Jul 18 '05 #4
Steven Bell wrote:
I've no idea what Martin was referring to when he said RTFM, because I could
find nothing about this. (Then again, perhaps I'm misunderstanding what he
means by RTFM?)


RTFM is tech jargon for "read the f**king manual".


In the Python world this usually reads as "Read The Felicitous Manual" :-)

--
Marc-Andre Lemburg
eGenix.com

Professional Python Software directly from the Source (#1, Oct 09 2003)
Python/Zope Products & Consulting ... http://www.egenix.com/
mxODBC, mxDateTime, mxTextTools ... http://python.egenix.com/

__________________________________________________ ______________________

::: Try mxODBC.Zope.DA for Windows,Linux,Solaris,FreeBSD for free ! ::::
Jul 18 '05 #5
> [ma****@v.loewis.de (Martin v. Löwis)]
You have to explicitly ask py2exe to include pyexpat in the
executable. RTFM.


*If* you are going to say RTFM you'd better make sure it *is* in the
manual. Otherwise you'd better s-h-a-d-d-u-p.

Next time you feel like saying "RTFM" in comp.lang.python either
(1) say it in comp.lang.java
(2) copy and paste the URL to the manual and point out the Section you
feel they should read.

--
Q: How many Democrats does it take to enjoy a good joke?
A: One more than you can find.
Jul 18 '05 #6
hw***@hotmail.com (Will Stuyvesant) writes:
[ma****@v.loewis.de (Martin v. Löwis)]
You have to explicitly ask py2exe to include pyexpat in the
executable. RTFM.


*If* you are going to say RTFM you'd better make sure it *is* in the
manual. Otherwise you'd better s-h-a-d-d-u-p.


See http://starship.python.net/crew/theller/py2exe/,
in "Flags to include or exclude modules or packages:"

Regards,
Martin
Jul 18 '05 #7

"Martin v. Löwis" <ma****@v.loewis.de> wrote in message
news:m3************@mira.informatik.hu-berlin.de...
hw***@hotmail.com (Will Stuyvesant) writes:
[ma****@v.loewis.de (Martin v. Löwis)]
You have to explicitly ask py2exe to include pyexpat in the
executable. RTFM.


*If* you are going to say RTFM you'd better make sure it *is* in the
manual. Otherwise you'd better s-h-a-d-d-u-p.


See http://starship.python.net/crew/theller/py2exe/,
in "Flags to include or exclude modules or packages:"


But, Martin, there's absolutely no mention of 'expat' in this entire document,
much less that section. So, how on earth was the advice 'RTFM' to help?

In the end, I was able to find an answer by stepping through code with a
debugger to find the module which wasn't being included. THAT
('xml.sax.drivers2.drv_pyexpat') was the unknown. THAT was the information
sort, by the original poster, I'm sure. If it wasn't then they needed a lot
more hand-holding than you're terse abuse.

In any case, I'll see if I can get this added to the pyexe documentation,
because I'd imagine this must be a recurring problem ... surely? Oddly I could
find absolutely nothing on this subject, apart from this lone thread, when I
originally googled around for an answer.

--
Mike
Jul 18 '05 #8

"Steven Bell" wrote:
"Mike Thompson":
"Kathleen Kudzma":
Does anyone know how to resolve the following problem that I'm getting in
Python 2.2 and 2.3?

PROBLEM: When I try to create a classReader object I get an exception:
"SAXReaderNotAvailable: No parsers found". This only happens when I run the .EXE; it does not happen if I run the .PY file. When I'm running the ..EXE this exception doesn't happen immediately. It happens as soon as I try to create a classReader object.

Please see the warnings that I get below when I create the .EXE:

>**********
>>warning: py2exe: * The following modules were not found: warning: py2exe: >>* Carbon.Folder warning: py2exe: * Carbon.Folders warning: py2exe: * >>DateTime warning: py2exe: * Ft.Lib warning: py2exe: *
>>Ft.Lib.DumpBgTuple warning: py2exe: * Ft.__init__ warning: py2exe: *
>>SOCKS warning: py2exe: * XPathParserc warning: py2exe: *
>>ext.IsDOMString warning: py2exe: * ext.SplitQName warning: py2exe: *
>>fcntl warning: py2exe: * ic warning: py2exe: * mx.DateTime warning:
>>py2exe: * rourl2path warning: py2exe: * xml.xslt warning: py2exe: *
>>xml.xslt.ParsedPattern warning: py2exe:
>>************************************************ ***************


Yes, I've just had the same problem -- using py3.2 and py2exe v0.4.2

After spending some time in a debugger following the execution path, I found out that the module xml.sax.drivers2.drv_pyexpat is the one that is missing. It gets loaded through a call to __import__ (see _xmlplus.sax.saxexts.py, line 42) which is why py2exe doesn't pick it up as being necessary.

All of which means it has to be explicitly included in the build. So, I was able to solve the problem with the following setup.py command line:

python setup.py py2exe --includes xml.sax.drivers2.drv_pyexpat

I've no idea what Martin was referring to when he said RTFM, because I could find nothing about this. (Then again, perhaps I'm misunderstanding what he
means by RTFM?)


RTFM is tech jargon for "read the f**king manual".

Yes. Except its not in the f**king manual, so I've no idea why Matrin is being
abusive.

--
Mike
Jul 18 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: RJS | last post by:
Hi all, I can't get a py2exe compiled app to run with numarray (numarray-0.5.win32- py2.2). Also wxPythonWIN32-2.3.3.1-Py22 and...
1
by: | last post by:
I want a binnary file to my aplicattion, but py2exe don't match the xmll.sax module. the py2exe shows this errors: warning: py2exe:...
12
by: Alessandro Crugnola *sephiroth* | last post by:
Hi, i'm trying to compile a .py script using py2exe into a win .exe file. In that script i'm using xml.dom.minidom to parse an xml file (with the...
2
by: Will | last post by:
Maybe there is another group for posting this... I am a total newbie to Python... so please forgive me if I ask a bunch of inappropriate...
2
by: David Brownell | last post by:
I am using the XMLValidateParser in the PyXML library (xml.sax.sax2exts.XMLValParserFactory.make_parser). When I run my script, everything works...
3
by: anthony hornby | last post by:
Hi, I am starting my honours degree project and part of it is going to be manipulating ASCII encoded XML files from a legacy database and...
1
by: Dan | last post by:
I'm writing a Python program that does some XML parsing, though nothing heavy, and I want to avoid requiring the user to install additional...
5
by: Matthias Kaeppler | last post by:
Hi, I have to say I am confused about the documentation on pyxml.sf.net. When I want to use DOM, I effectively am using a class called Sax2? ^^...
1
by: shane.external | last post by:
I'm having trouble using Py2exe with a PyQT-based python project. Or possibly I'm having a problem with PyQT and Py2exe makes it apparent....
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
jalbright99669
by: jalbright99669 | last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
0
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the...
0
by: Carina712 | last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand....
0
BLUEPANDA
by: BLUEPANDA | last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS...
0
by: Rahul1995seven | last post by:
Introduction: In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.