Re: [PythonCE] xml support

2006-01-30 Thread Brian Retford
Sgmlop is fairly easy to get working on wince (one c file, one py file). It looks like Elementtree supports using sgmlop as well. Sgmlop is very fast but necessarily the most correct xml parser out there. Expat is also relatively easy to compile for WinCE. Brian Retford 206.349.7060 Software Devel

Re: [PythonCE] xml support

2006-01-30 Thread Dmitry Belyaev
I doubt anything from "main python source" can be compiled for WinCE without any changes to the sources. I an not WinCE specialist, so I am doubt I am able to make necessary changes and compile that module. My last attempt to compile PythonCE version failed, so I decided to download only binarie

Re: [PythonCE] xml support

2006-01-30 Thread Dmitry Belyaev
I found that elementTree uses obsolete module "xmllib". Besides, neither xmllib nor xml.sax are available at PythonCE. Stewart Midwinter wrote: > try elementTree from http://effbot.org. > > s > > > On 1/30/06, Dmitry Belyaev <[EMAIL PROTECTED]> wrote: > >>Is there in PythonCE any working xml-

Re: [PythonCE] xml support

2006-01-30 Thread Stewart Midwinter
try elementTree from http://effbot.org. s On 1/30/06, Dmitry Belyaev <[EMAIL PROTECTED]> wrote: > Is there in PythonCE any working xml-parser or I have to parse xml by hands? ___ PythonCE mailing list PythonCE@python.org http://mail.python.org/mailman/

Re: [PythonCE] xml support

2006-01-30 Thread Ischebeck, Jan
Hi Dmitry, Yes, there is at least one xml parser for python ce. You can compile the pyexpat module included in the main python source. (You can find a makefile patch at the sourceforge side) I'm sorry, but I don't have an up to date binary version at hand. My binary is based on Kashtan's first v