0
votes
1answer
35 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
3answers
75 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 …
0
votes
2answers
45 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
60 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 …
2
votes
4answers
114 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
31 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
90 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 …
0
votes
2answers
72 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()
…
3
votes
2answers
132 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
90 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
4answers
56 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 :
…
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
44 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
64 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?
