From vinh.dhbk at gmail.com Mon Mar 8 10:44:37 2010 From: vinh.dhbk at gmail.com (Hichiro) Date: Mon, 8 Mar 2010 16:44:37 +0700 Subject: [XML-SIG] Read XML records one by one Message-ID: Hi all! I'm trying to read one by one record in XML file to find out its tag and attribute for schema matching. But I haven't done yet. So, could you help me?! Thanks so much! :) -- Best regards, Vinh NV CNPM K50 DHBKHN Y! : Vinh.dhbk Sky : Vinh.dhbk 84 976 314 988 -------------- next part -------------- An HTML attachment was scrubbed... URL: From stefan_ml at behnel.de Mon Mar 8 11:40:42 2010 From: stefan_ml at behnel.de (Stefan Behnel) Date: Mon, 08 Mar 2010 11:40:42 +0100 Subject: [XML-SIG] Read XML records one by one In-Reply-To: References: Message-ID: <4B94D42A.2030008@behnel.de> Hichiro, 08.03.2010 10:44: > I'm trying to read one by one record in XML file to find out its tag and > attribute for schema matching. But I haven't done yet. So, could you help > me?! Hi, since it appears that you cross-posted this to the python-tutor list, I'll answer over there. Stefan From vinh.dhbk at gmail.com Mon Mar 8 10:42:27 2010 From: vinh.dhbk at gmail.com (Hichiro) Date: Mon, 8 Mar 2010 16:42:27 +0700 Subject: [XML-SIG] read XML records one by one Message-ID: Hi all! I'm trying to read one by one record in XML file to find out its tag and attribute for schema matching. But I haven't done yet. So, could you help me?! Thanks so much! :) -- Best regards, Vinh NV CNPM K50 DHBKHN Y! : Vinh.dhbk Sky : Vinh.dhbk 84 976 314 988 -------------- next part -------------- An HTML attachment was scrubbed... URL: From hyances at gmail.com Thu Mar 11 20:13:07 2010 From: hyances at gmail.com (Humberto Yances) Date: Thu, 11 Mar 2010 14:13:07 -0500 Subject: [XML-SIG] Error instaling PyXML on Ubuntu 9.10 Message-ID: <1268334787.2511.99.camel@hyances-laptop> Hi everybody! I'm trying to install PyXML 0.8.4 on Ubuntu 9.10; but the following error message appear: http://paste.ubuntu.com/393468/ I've installed python-dev and try with python2.4; 2.5 and 2.6 and the error remain. Please ?Any suggestion? Thanks, Humberto Yances -------------- next part -------------- An HTML attachment was scrubbed... URL: From stefan_ml at behnel.de Thu Mar 11 21:15:55 2010 From: stefan_ml at behnel.de (Stefan Behnel) Date: Thu, 11 Mar 2010 21:15:55 +0100 Subject: [XML-SIG] Error instaling PyXML on Ubuntu 9.10 In-Reply-To: <1268334787.2511.99.camel@hyances-laptop> References: <1268334787.2511.99.camel@hyances-laptop> Message-ID: <4B994F7B.1070106@behnel.de> Humberto Yances, 11.03.2010 20:13: > I'm trying to install PyXML 0.8.4 on Ubuntu 9.10 Why would you want to do that? PyXML has been unmaintained for years. What are you trying to do with it? Stefan From stefan_ml at behnel.de Thu Mar 11 21:33:46 2010 From: stefan_ml at behnel.de (Stefan Behnel) Date: Thu, 11 Mar 2010 21:33:46 +0100 Subject: [XML-SIG] Error instaling PyXML on Ubuntu 9.10 In-Reply-To: <1268338886.2511.115.camel@hyances-laptop> References: <1268334787.2511.99.camel@hyances-laptop> <4B994F7B.1070106@behnel.de> <1268338886.2511.115.camel@hyances-laptop> Message-ID: <4B9953AA.1020805@behnel.de> Humberto Yances, 11.03.2010 21:21: > El jue, 11-03-2010 a las 21:15 +0100, Stefan Behnel escribi?: >> Humberto Yances, 11.03.2010 20:13: >>> I'm trying to install PyXML 0.8.4 on Ubuntu 9.10 >> >> Why would you want to do that? PyXML has been unmaintained for years. >> >> What are you trying to do with it? > > It is needed for OpenERP-Server. For Ubuntu the package was python-xml; > but no longer exist, so I must download and compile it. No, you don't. According to the relevant bug reports in he Ubuntu bug tracker, the OpenERP package has recently been fixed to work without PyXML, so use a recent release instead. Oh, and please keep discussions on-list and avoid top-posting. Stefan From gramos at yahoo.com Sun Mar 14 01:40:22 2010 From: gramos at yahoo.com (brown wrap) Date: Sat, 13 Mar 2010 16:40:22 -0800 (PST) Subject: [XML-SIG] Can't Import libxml2 Message-ID: <112108.48399.qm@web111717.mail.gq1.yahoo.com> I am trying to compile a program, gnome-doc-utils and its producing an error saying it can't import libxml2: ImportError: No module named libxml2 I have installed the following Python module, so I don't know why it can't find it. PyXML-0.8.4 PyXML seems to be fairly old and is says it is no long maintained. Is there a replacement? Thanks. From stefan_ml at behnel.de Sun Mar 14 08:19:57 2010 From: stefan_ml at behnel.de (Stefan Behnel) Date: Sun, 14 Mar 2010 08:19:57 +0100 Subject: [XML-SIG] Can't Import libxml2 In-Reply-To: <112108.48399.qm@web111717.mail.gq1.yahoo.com> References: <112108.48399.qm@web111717.mail.gq1.yahoo.com> Message-ID: <4B9C8E1D.9090807@behnel.de> brown wrap, 14.03.2010 01:40: > I am trying to compile a program, gnome-doc-utils and its producing an error saying it can't import libxml2: > > ImportError: No module named libxml2 > > I have installed the following Python module, so I don't know why it can't find it. > > PyXML-0.8.4 > > PyXML seems to be fairly old and is says it is no long maintained. Is there a replacement? Thanks. The libxml2 module has nothing to do with PyXML. Just install the libxml2 Python bindings, look out for a python-libxml2 package. Stefan