Tagged Questions
0
votes
1answer
33 views
Python/LXML - Children node returning 'NoneType'
Here is a sample of the XML tree I am traversing:
<entry dataset="Swiss-Prot" created="1993-07-01+01:00" modified="2013-04-03+01:00" version="144">
<accession>P31750</accession>
...
0
votes
1answer
41 views
Python/LXML - Getting “grandchildren” from etree
Here is a sample of the XML tree I am traversing:
<entry dataset="Swiss-Prot" created="1993-07-01+01:00" modified="2013-04-03+01:00" version="144">
<accession>P31750</accession>
...
0
votes
1answer
30 views
Get original URL of a saved webpage
I am using Python and lxml library to parse a saved webpage.
The docinfo of a saved webpage shows the disk location of a saved webpage.
storedHtmlDoc.docinfo.URL
Is there any way to extract the ...
0
votes
1answer
33 views
How to use lxml in Python 3?
In my project I need to parse an XML document using lxml.etree. I'm novice in Python, so I can't understand, how to find all categories with some tag. Let's describe it more accurately.
I have an XML ...
0
votes
0answers
54 views
Python3.x: Parse wikipedia webpage with lxml
So, I've been trying to parse a wikipedia page to get a particular table and convert it to a list of tuples or a dictionary. More specific, each table row has a name and and multiple numbers. I want ...
-1
votes
1answer
51 views
Get bulletted list in lxml
So I have a html like this:
...
<ul class="myclass">
<li>blah</li>
<li>blah2</li>
</ul>
...
I want to get the texts "blah" and "blah2" from the ul with ...
3
votes
0answers
147 views
POST method form in lxml raises TypeError with submit_form
I'm trying to submit a POST method form using lxml and I'm getting a TypeError. This is a minimal example that raises this Error:
>>> import lxml.html
>>> page = ...
4
votes
1answer
288 views
Parse SGML with Open Arbitrary Tags in Python 3
I am trying to parse a file such as:
http://www.sec.gov/Archives/edgar/data/1409896/000118143112051484/0001181431-12-051484.hdr.sgml
I am using Python 3 and have been unable to find a solution with ...
1
vote
1answer
633 views
Issues with installing lxml with Python3 (MacOS)
Been trying to install lxml with my Python 3 installation on a Mountain Lion OSX machine, following the instructions here: http://lxml.de/build.html#building-lxml-on-macos-x
I get the following error ...
0
votes
1answer
54 views
How to manipulate checkboxes with lxml
I've followed the lxml documentation here and still cannot get it to check the checkbox. I'm pretty new to python and lxml but this seems like a pretty simple task.
I don't get any errors with the ...
0
votes
1answer
82 views
Iterating thru list for lxml form submission
I'm pretty new to Python and even more new to lxml, but what I'm trying to do seems really simple but I can't figure out what I'm doing wrong.
I have this code with the goal of feeding a list of ...
6
votes
2answers
1k views
Decode base64 string in python 3 (with lxml or not)
I know this looks embarrassingly easy, and I guess the problem is that I just don't have a clear understanding of all this bytes-str-unicode (and encoding-decoding, speaking frankly) stuff yet.
...
0
votes
2answers
1k views
Finding html element with class using lxml
I've searched everywhere and what I most found was doc.xpath('//element[@class="classname"]'), but this does not work no matter what I try.
code I'm using
import lxml.html
def check():
data = ...
2
votes
2answers
2k views
install python3 + lxml on windows
I would like to install python3 with lxml on windows 7.
There seems to be several versions available.
What's the best version/way to install?
By best I mostly mean the easiest.
Points if I don't ...
0
votes
1answer
62 views
Last element in xml not getting picked up
I have a python 3 script below that is supposed to download an xml file and split it into smaller files with only 500 items each. I am having two problems:
the last item in the original xml is not ...
1
vote
1answer
136 views
When using iterdescendants() on an etree, is it ok to modify the tree?
(Python 3.2)
I'm using etree to parse some XML. To do this, I'm recursively iterating through the document with iterdescendants(). So, something like:
for elem in doc.iterdescendants():
if ...
1
vote
1answer
706 views
Python 3.2 lxml fill and submit form, select multiple, how to do it? value not working
Great page this one, coming from the perl world and after several years of doing nothing, I've re-started to program again (this web page didn't exist, how things change). And now, after a 2 full-days ...
4
votes
2answers
684 views
lxml removes spaces and line breaks in <head>
This small program:
from lxml.html import tostring, fromstring
e = fromstring('''
<html><head>
<link href="/comments.css" rel="stylesheet" ...
0
votes
1answer
556 views
Install python package (e.g. lxml) to specific python version (e.g. 3.1) when another python package (e.g 2.6) is default
It bugs me theese simple things:
I notice that my installed lxml can't be found from my python3.1 shell.
There is no problem in python2.6 shell
So my question now is - how can I install lxml to ...
6
votes
1answer
4k views
builtins.TypeError: must be str, not bytes
I've converted my scripts form python 2.7 to 3.2,and I have some bug.
# -*- coding: utf-8 -*-
import time
from datetime import date
from lxml import etree
from collections import OrderedDict
# ...
1
vote
2answers
766 views
Python 3.1.2 + Snow Leopard + lxml + XMLSchema
I'd like to use lxml library to validate XML Schemas in Python 3.1.2.
Since the Snow Leopard MAC OS comes with the Python 2.6.1 installed, firstly, I downloaded the Python 3.1.2 automated installer ...
