5
votes
4answers
74 views
Parsing HTML in python - lxml or BeautifulSoup? Which of these is better for what kinds of purposes?
From what I can make out, the two main HTML parsing libraries in Python are lxml and BeautifulSoup. I've chosen BeautifulSoup for a project I'm working on, but I chose it for no particular reason …
0
votes
1answer
31 views
Extract data from a website’s list, without superfluous tags
Working code: Google dictionary lookup via python and beautiful soup -> simply execute and enter a word.
I've quite simply extracted the first definition from a specific list item. However to get …
0
votes
1answer
33 views
python lxml on app engine?
Can I use python lxml on google app engine? ( or do i have to use Beautiful Soup? )
I have started using Beautiful Soup but it seems slow. I am just starting to play with the idea of "screen …
0
votes
2answers
40 views
How to parse through script tag using python and beautifulsoup
Hi,
I am trying to extract attributes of frame tag which is inside document.write function on a page like this:
<script language="javascript">
.
.
.
document.write('<frame name="nav" …
2
votes
2answers
67 views
split a comma separated list with links in with beautifulsoup
I've got a comma separated list in a table cell in an HTML document, but some of items in the list are linked:
<table>
<tr>
<td>Names</td>
<td>Fred, John, …
0
votes
3answers
100 views
Need help with Python/BeautifulSoup
Can I combine these two blocks into one:
Edit: Any other method than combining loops like Yacoby did in the answer.
for tag in soup.findAll(['script', 'form']):
tag.extract()
for tag in …
2
votes
4answers
143 views
How can I translate this XPath expression to BeautifulSoup?
In answer to a previous question, several people suggested that I use BeautifulSoup for my project. I've been struggling with their documentation and I just cannot parse it. Can somebody point me to …
1
vote
3answers
78 views
Beautifulsoup get value in table
I am trying to scrape
http://www.co.jefferson.co.us/ats/displaygeneral.do?sch=000104
and get the "owner Name(s)"
What I have works but is really ugly and not the best I am sure, so I am looking for a …
0
votes
1answer
44 views
Need help with Python/BeautifulSoup [closed]
Possible Duplicate:
Need help with Python/BeautifulSoup
How can I combine these multiple sections into one:
for tag in soup.findAll(attrs={'class': 'noprint'}):
tag.extract()
for tag in …
0
votes
2answers
53 views
What are these errors and how do I handle them?
I am using this simple code
for l in bios:
OpenThisLink = url + l
response = urllib2.urlopen(OpenThisLink)
to open about 200 urls and search them with regex (and BeautifulSoup), but after a …
0
votes
3answers
33 views
How to design small web forms in html page
When i design our web-form then i see then my web-form is very small then my web page
Because my form have only two field (two text-box two label)
How i design it. then he look Beautiful.
3
votes
4answers
104 views
Python and BeautifulSoup, not finding ‘a’
Hey,
Here's a piece of HTML code (from delicious):
<h4>
<a rel="nofollow" class="taggedlink " href="http://imfy.us/" >Generate Secure Links with Anonymous Referers & Anti-Bot …
3
votes
2answers
155 views
BeautifulSoup - easy way to to obtain HTML-free contents.
I'm using this code to find all interesting links in a page:
soup.findAll('a', href=re.compile('^notizia.php\?idn=\d+'))
And it does its job pretty well. Unfortunately inside that a tag there are …
0
votes
4answers
108 views
BeautifulSoup.findAll() in perl
I need to pull out all of the "NodeGroup" elements out of an XML file:
<Database>
<Get>
<Data>
<NodeGroups>
<NodeGroup>
<AssociateNode …
0
votes
2answers
100 views
Remove a tag using BeautifulSoup but keeps its contents
Currently I have code that does something like this:
soup = BeautifulSoup(value)
for tag in soup.findAll(True):
if tag.name not in VALID_TAGS:
tag.extract()
…
