Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #52066 > unrolled thread

Re: lxml tostring quoting too much

Started byChris Down <chris@chrisdown.name>
First post2013-08-06 22:28 +0200
Last post2013-08-06 22:28 +0200
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: lxml tostring quoting too much Chris Down <chris@chrisdown.name> - 2013-08-06 22:28 +0200

#52066 — Re: lxml tostring quoting too much

FromChris Down <chris@chrisdown.name>
Date2013-08-06 22:28 +0200
SubjectRe: lxml tostring quoting too much
Message-ID<mailman.272.1375823386.1251.python-list@python.org>

[Multipart message — attachments visible in raw view] — view raw

On 2013-08-06 18:38, andrea crotti wrote:
> I would really like to do the following:
>
> from lxml import etree as ET
> from lxml.builder import E
>
> url = "http://something?x=10&y=20"
> l = E.link(url)
> ET.tostring(l) -> "<link>http://something?x=10&y=20</link>"
>
> However the lxml tostring always quotes the &, I can't find a way to
> tell it to avoid quoting it.

You're probably aware, but without the escaping, it is no longer well formed
XML. Why do you want to do that? Is there a larger underlying problem that
should be solved instead?

Either way, you can use "unescape" from the xml.sax.saxutils module[0].

Chris

0: http://docs.python.org/2/library/xml.sax.utils.html

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web