lxml : while loop with node same elements
I'm using lxml to create a json file based on a xml. The xml file has this kind of structure :
<spots_list>
<spot id="001" latitude="2011464" longitude="979511">
<adress>Somewhere</adress>
<city>BOSTON</city>
<price category="Intermediate" value="782"/>
<price category="Expensive" value="2765"/>
<price category="Cheap" value="12"/>
</spot>
<spot id="002" latitude="2101644" longitude="915971">
<adress>Somewhere else (very very far away)</adress>
<city>CAMBRIDGE</city>
<price category="Intermediate" value="472"/>
<price category="Intermediate (but less expensive)" value="422"/>
<price category="Expensive" value="20275"/>
<price category="Cheap" value="12"/>
</spot>
</spots_list>
The number of price elements in every can change, so I tried to use a while loop in Python. Here's the associate code :
from lxml import etree
tree = etree.parse("my_file.xml")
for node in tree.xpath("//spots_list/spot"):
for adress in node.xpath("adress"):
adr = adress.text
while node.xpath("price"):
print(adr)
I know it's wrong, because the first adress appears over and over, but I don't figure how formulate this loop to switch for next elements...
Thanks in advance.
python while-loop lxml
add a comment |
I'm using lxml to create a json file based on a xml. The xml file has this kind of structure :
<spots_list>
<spot id="001" latitude="2011464" longitude="979511">
<adress>Somewhere</adress>
<city>BOSTON</city>
<price category="Intermediate" value="782"/>
<price category="Expensive" value="2765"/>
<price category="Cheap" value="12"/>
</spot>
<spot id="002" latitude="2101644" longitude="915971">
<adress>Somewhere else (very very far away)</adress>
<city>CAMBRIDGE</city>
<price category="Intermediate" value="472"/>
<price category="Intermediate (but less expensive)" value="422"/>
<price category="Expensive" value="20275"/>
<price category="Cheap" value="12"/>
</spot>
</spots_list>
The number of price elements in every can change, so I tried to use a while loop in Python. Here's the associate code :
from lxml import etree
tree = etree.parse("my_file.xml")
for node in tree.xpath("//spots_list/spot"):
for adress in node.xpath("adress"):
adr = adress.text
while node.xpath("price"):
print(adr)
I know it's wrong, because the first adress appears over and over, but I don't figure how formulate this loop to switch for next elements...
Thanks in advance.
python while-loop lxml
add a comment |
I'm using lxml to create a json file based on a xml. The xml file has this kind of structure :
<spots_list>
<spot id="001" latitude="2011464" longitude="979511">
<adress>Somewhere</adress>
<city>BOSTON</city>
<price category="Intermediate" value="782"/>
<price category="Expensive" value="2765"/>
<price category="Cheap" value="12"/>
</spot>
<spot id="002" latitude="2101644" longitude="915971">
<adress>Somewhere else (very very far away)</adress>
<city>CAMBRIDGE</city>
<price category="Intermediate" value="472"/>
<price category="Intermediate (but less expensive)" value="422"/>
<price category="Expensive" value="20275"/>
<price category="Cheap" value="12"/>
</spot>
</spots_list>
The number of price elements in every can change, so I tried to use a while loop in Python. Here's the associate code :
from lxml import etree
tree = etree.parse("my_file.xml")
for node in tree.xpath("//spots_list/spot"):
for adress in node.xpath("adress"):
adr = adress.text
while node.xpath("price"):
print(adr)
I know it's wrong, because the first adress appears over and over, but I don't figure how formulate this loop to switch for next elements...
Thanks in advance.
python while-loop lxml
I'm using lxml to create a json file based on a xml. The xml file has this kind of structure :
<spots_list>
<spot id="001" latitude="2011464" longitude="979511">
<adress>Somewhere</adress>
<city>BOSTON</city>
<price category="Intermediate" value="782"/>
<price category="Expensive" value="2765"/>
<price category="Cheap" value="12"/>
</spot>
<spot id="002" latitude="2101644" longitude="915971">
<adress>Somewhere else (very very far away)</adress>
<city>CAMBRIDGE</city>
<price category="Intermediate" value="472"/>
<price category="Intermediate (but less expensive)" value="422"/>
<price category="Expensive" value="20275"/>
<price category="Cheap" value="12"/>
</spot>
</spots_list>
The number of price elements in every can change, so I tried to use a while loop in Python. Here's the associate code :
from lxml import etree
tree = etree.parse("my_file.xml")
for node in tree.xpath("//spots_list/spot"):
for adress in node.xpath("adress"):
adr = adress.text
while node.xpath("price"):
print(adr)
I know it's wrong, because the first adress appears over and over, but I don't figure how formulate this loop to switch for next elements...
Thanks in advance.
python while-loop lxml
python while-loop lxml
asked Nov 12 '18 at 22:02
Raphadasilva
150111
150111
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The basic problem in the while
statement is that node.xpath(...)
returns a list, which is considered True
if it is not empty. You just have to do the same thing as at the top level, i.e. iterate over the elements you are interested in, e.g.
def parse_spot(el):
adr = el.find('adress')
return dict(
address=adr.text if adr is not None else None, # error handling if not found
price=[dict(p.attrib) for p in el.findall('price')]
)
tree = etree.fromstring(xml) # xml is your example as string
[parse_spot(el) for el in tree.findall('./spot')]
You can also use xpath
instead of findall
like you did.
Thank you very much for your quick answer !
– Raphadasilva
Nov 12 '18 at 22:31
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53270749%2flxml-while-loop-with-node-same-elements%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The basic problem in the while
statement is that node.xpath(...)
returns a list, which is considered True
if it is not empty. You just have to do the same thing as at the top level, i.e. iterate over the elements you are interested in, e.g.
def parse_spot(el):
adr = el.find('adress')
return dict(
address=adr.text if adr is not None else None, # error handling if not found
price=[dict(p.attrib) for p in el.findall('price')]
)
tree = etree.fromstring(xml) # xml is your example as string
[parse_spot(el) for el in tree.findall('./spot')]
You can also use xpath
instead of findall
like you did.
Thank you very much for your quick answer !
– Raphadasilva
Nov 12 '18 at 22:31
add a comment |
The basic problem in the while
statement is that node.xpath(...)
returns a list, which is considered True
if it is not empty. You just have to do the same thing as at the top level, i.e. iterate over the elements you are interested in, e.g.
def parse_spot(el):
adr = el.find('adress')
return dict(
address=adr.text if adr is not None else None, # error handling if not found
price=[dict(p.attrib) for p in el.findall('price')]
)
tree = etree.fromstring(xml) # xml is your example as string
[parse_spot(el) for el in tree.findall('./spot')]
You can also use xpath
instead of findall
like you did.
Thank you very much for your quick answer !
– Raphadasilva
Nov 12 '18 at 22:31
add a comment |
The basic problem in the while
statement is that node.xpath(...)
returns a list, which is considered True
if it is not empty. You just have to do the same thing as at the top level, i.e. iterate over the elements you are interested in, e.g.
def parse_spot(el):
adr = el.find('adress')
return dict(
address=adr.text if adr is not None else None, # error handling if not found
price=[dict(p.attrib) for p in el.findall('price')]
)
tree = etree.fromstring(xml) # xml is your example as string
[parse_spot(el) for el in tree.findall('./spot')]
You can also use xpath
instead of findall
like you did.
The basic problem in the while
statement is that node.xpath(...)
returns a list, which is considered True
if it is not empty. You just have to do the same thing as at the top level, i.e. iterate over the elements you are interested in, e.g.
def parse_spot(el):
adr = el.find('adress')
return dict(
address=adr.text if adr is not None else None, # error handling if not found
price=[dict(p.attrib) for p in el.findall('price')]
)
tree = etree.fromstring(xml) # xml is your example as string
[parse_spot(el) for el in tree.findall('./spot')]
You can also use xpath
instead of findall
like you did.
answered Nov 12 '18 at 22:16
Matthias Ossadnik
57427
57427
Thank you very much for your quick answer !
– Raphadasilva
Nov 12 '18 at 22:31
add a comment |
Thank you very much for your quick answer !
– Raphadasilva
Nov 12 '18 at 22:31
Thank you very much for your quick answer !
– Raphadasilva
Nov 12 '18 at 22:31
Thank you very much for your quick answer !
– Raphadasilva
Nov 12 '18 at 22:31
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53270749%2flxml-while-loop-with-node-same-elements%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown