Tagged Questions

2
votes
2answers
35 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 …
0
votes
3answers
26 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
86 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 &amp; Anti-Bot …
0
votes
5answers
285 views

What pure Python library should I use to scrape a website?

I currently have some Ruby code used to scrape some websites. I was using Ruby because at the time I was using Ruby on Rails for a site, and it just made sense. Now I'm trying to port this over to …
4
votes
5answers
421 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 am unable to figure …
0
votes
2answers
63 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
84 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 …
3
votes
2answers
129 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
52 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 : …
3
votes
5answers
418 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 thought was …
4
votes
6answers
395 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
79 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 = …
1
vote
2answers
43 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_exp_tag = …
1
vote
1answer
35 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? Many thanks
1
vote
2answers
60 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?

1 2 3 4 5 next
15 30 50 per page