4
votes
5answers
412 views
Decomposing HTML to link text and target
Given an HTML link like
<a href="urltxt" class="someclass" close="true">texttxt</a>
how can I isolate the url and the text?
Updates
I'm using Beautiful Soup, and …
0
votes
2answers
44 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 …
0
votes
4answers
71 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>
…
3
votes
2answers
117 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 t …
0
votes
4answers
46 views
Making BeautifulSoup ignore contents inside script tags
I have been trying to get BeautifulSoup (3.1.0.1)to parse a html page that has a lot of javascript that generates html inside tags.
One example fragment looks like this :
<ht …
3
votes
5answers
409 views
Looking for a recommendation of a good tutorial on best practices for a web scraping project?
I need to do a fairly extensive project involving web scraping and am considering using Hpricot or Beautiful Soup (i.e. Ruby or Python). Has anyone come across a tutorial that they …
4
votes
6answers
389 views
What’s the nearest equivalent of Beautiful Soup for Ruby?
I love the Beautiful Soup scraping library in Python. It just works. Is there a close equivalent in Ruby?
0
votes
4answers
76 views
BeautifulSoup is omitting body of page
BeautifulSoup newbe... Need help
Here is the code sample...
from mechanize import Browser
from BeautifulSoup import BeautifulSoup
mec = Browser()
#url1 = "http://www.wines.com/c …
1
vote
2answers
41 views
Matching tags in BeautifulSoup
I'm trying to count the number of tags in the 'soup' from a beautifulsoup result. I'd like to use a regular expression but am having trouble.
The code Ive tried is as follows:
reg …
1
vote
1answer
33 views
Using md5 on BeautifulSoup result
Im trying to use the md5 algorithm on web pages to avoid seeing duplicates. Is there an easy way to convert the result from beautifulsoup into a string which is digestible by md5?
…
1
vote
2answers
51 views
BeautifulSoup - extracting attribute values
If Beautiful Soup gives me an anchor tag like this:
<a class="blah blah" id="blah blah" href="link.html"></a>
How would I retrieve the value of the href attribute?
2
votes
1answer
74 views
BeautifulSoup with Jython
I just tried to run BeautifulSoup (3.1.0.1) with Jython (2.5.1) and I was amazed to see how much slower it was than CPython. Parsing a page (http://www.fixprotocol.org/specificatio …
0
votes
1answer
60 views
How do you elimate all HTML tags/XML tags with BeautifulSoup?
It doesn't say it anywhere in the documentation, it only shows how to parse the tags.
1
vote
1answer
30 views
Pamie and python-win32 question
hello,
currently im making some web scrap script.
and i was choice PAMIE to use my script.
actually im new to python and programming.
so i have no idea ,if i use PAMIE,it really he …
1
vote
1answer
101 views
Select specific child elements with BeautifulSoup
I'm reading up on BeautifulSoup to screen-scrape some pretty heavy html pages. Going through the documentation of BeautifulSoup I can't seem to find a easy way to select child elem …
