0
votes
4answers
50 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
28 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
30 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
41 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?
0
votes
1answer
55 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
44 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
24 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
71 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 …
0
votes
4answers
246 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 …
2
votes
1answer
54 views
Why is BeautifulSoup modifying my self-closing elements?
This is the script I have:
import BeautifulSoup
if __name__ == "__main__":
data = """
<root>
<obj id="3"/>
<obj id="5"/>
<obj …
1
vote
2answers
189 views
Parsing out data using BeautifulSoup in Python
I am attempting to use BeautifulSoup to parse through a DOM tree and extract the names of authors. Below is a snippet of HTML to show the structure of the code I'm going to scrape. …
1
vote
2answers
247 views
Python web scraping involving HTML tags with attributes
I'm trying to make a web scraper that will parse a web-page of publications and extract the authors. The skeletal structure of the web-page is the following:
<html>
<body …
3
votes
1answer
188 views
lxml equivalent to BeautifulSoup “OR” syntax?
I'm converting some html parsing code from BeautifulSoup to lxml. I'm trying to figure out the lxml equivalent syntax for the following BeautifullSoup statement:
soup.find('a', { …
0
votes
1answer
172 views
urlopen, BeautifulSoup and UTF-8 Issue
I am just trying to retrieve a web page, but somehow a foreign character is embedded in the HTML file. This character is not visible when I use "View Source."
isbn = 9780141187983 …
3
votes
3answers
255 views
Mechanize and BeautifulSoup for PHP?
I was wondering if there was anything similar like Mechanize or BeautifulSoup for PHP?
