BeautifulSoup is a Python package for parsing HTML. The latest version of this package is version 4, which is to be imported as bs4. It's fully compatible with previous version.
0
votes
2answers
23 views
Beautiful Soup “not supported” Google App Engine
I am working in python on a GAE app. Beautiful soup, which the app uses, works fine on my dev server locally. When I try and upload it to google's servers however, I get the following error: "Error ...
0
votes
0answers
14 views
'TypeError: expected string or buffer' when performing re.sub on beautiful soup result set iteration
content_a is a beautiful soup result set (ie the type is <class 'bs4.element.ResultSet'>) that is made up of values whose type is <class 'bs4.element.Tag'>.
If i print 'content_a' i ...
0
votes
0answers
8 views
Get href Attribute Link from td tag BeautifulSoup Python
I am new in Python and someone suggested me to use Beautiful soup for Scrapping and i am struck in a problem to fetch the href attribute from a td tag Column 2 on the basis of year in column 4.
...
0
votes
1answer
27 views
Beautiful Soup HTML Extraction
I am struggling with getting the data I want and I am sure its very simple if you know how to use BS. I have been trying to get this right for hours without avail after reading the docs.
Currently ...
-1
votes
0answers
29 views
How to select span using beautifulSoup [closed]
I am trying to filter out some content from HTML using beautifulSoup. How do i select HTML tags based on ID or Class For ex:
import bs4
html = "<div class=\"price-box\">\n ...
0
votes
1answer
14 views
How to skip through same tags in BeautifulSoup - Python
I am currently writing code for Scrapers and more and more become a fan of Python and especially BeautifulSoup.
Still... When parsing through html I came across a difficult part that I could only use ...
0
votes
0answers
34 views
Parsing html elements using BeautifulSoup
Suppose I have:
<tr>
<td class="prodSpecAtribute">word</td>
<td colspan="5">
<a href="http://www.cmegroup.com/clearing/trading-practices/CMEblock-trade.html" ...
0
votes
2answers
33 views
Obtain a Boolean from html expression Python
I wanted to assign a boolean value to this opertions:
soup = BeautifulSoup(page)
x = soup.find('tr')
y = x.findAll('td')
left = y[0]
if assert('blah'in left['class']) holds true -- meaning there ...
0
votes
1answer
19 views
Access the 'content' attribute of the 'description' meta tag
When using Beautiful Soup to access a meta tag the result is presented as the entire tag:
soup.find(attrs={"name":"description"})
<meta content="If youre looking for Dotan Cohen, here I am." ...
0
votes
1answer
27 views
Parsing rows of information from html using python
I wanted to find a way to parse information from:
<tr>
<td class="prodSpecAtribute">Rulebook Chapter</td>
<td colspan="5">
<a ...
0
votes
1answer
43 views
Simple example BeautifulSoup Python
I was working a simple example with BeautifulSoup, but I was getting weird resutls.
Here is my code:
soup = BeautifulSoup(page)
print soup.prettify()
stuff = soup.findAll('td', attrs={'class' : ...
0
votes
0answers
31 views
Unable to open file object created in Django
I'm developing an application that runs on an Apache server with Django framework. My current script works fine when it runs on the local desktop (without Django). The script downloads all the images ...
1
vote
1answer
39 views
Python - cannot access a specific div [Urllib, BeautifulSoup, maybe Mechanize?]
I have been breaking my head against this wall for a couple days now, so I thought I would ask the SO community. I want a python script that, among other things, can hit 'accept' buttons on forms on ...
0
votes
2answers
31 views
Beautiful soup - data not in HTML file
I am new to Python. I am trying to scrape data from a website and the data I want can not be seen on view > source in the browser. It comes from another file. It is possible to scrape the actual data ...
0
votes
0answers
18 views
Installing BeautifulSoup on Python 3.3 with default Python version on 2.7
I have installed BeautifulSoup4 with easy_install and it works fine. But it's installed for Python 2.7, that is my current default version, and I want to run it with python 3.3.
I couldn't manage to ...
0
votes
3answers
59 views
How to get multiple lines <li> below <ul> tag with regex in python
I got this HTML tags that I've pulled from a website:
<ul><li>Some Keys in the UL List</li>
</ul>
<li>HKEY_LOCAL_MACHINE\SOFTWARE\Description</li>
...
0
votes
1answer
20 views
how to automate this beautifulsoup import
I am importing links to boxscores from this webpage
http://www.covers.com/pageLoader/pageLoader.aspx?page=/data/wnba/teams/pastresults/2012/team665231.html
This is how I am doing it now. I get ...
0
votes
1answer
21 views
Issue extracting data using BS4
I'm trying to extract some data from a website using bs4 however I can't access the exact text that I need. Using the following code
name = (soup('td', {'class':'mstat'}))
outputs
[<td ...
0
votes
0answers
22 views
Cannot scrape with beautifulsoup and urllib because of javascript variable
Unfortunately I am newbie with beautifulsoup and urllib so I might not even ask correctly what I need..
There is a website www.example.com
I need to extract some data from this website which displays ...
0
votes
1answer
29 views
Python decode french char in html email attachment
I'm trying to decode an html attachment file of an email that I take on an IMAP Server.
If the html file contain normal character it's working without problem, but when you have some french é ...
-1
votes
0answers
28 views
Beautiful Soup 4.2 installation error
I'm using Python 3.3.0 in Windows 7 64 bit. And I need to parse HTML documents, so I tried to install beautifulsoup 4.2 from here (http://www.crummy.com/software/BeautifulSoup/bs4/download/4.2/) but ...
4
votes
1answer
41 views
Use urllib2 cookie in Selenium
I am trying to scrape and interact with a site. Using BeautifulSoup, I can do MOST of what I want, but not all of it. Selenium should able to handle that portion. I can get it to working using the ...
0
votes
1answer
17 views
how to invoke python script in jsp/servlet?
I am trying to invoke a python code for screen scarping (using Beautiful Soup) from my jsp servlet. Or it would also work if it can be directly invoked from the HTML.
Looked through few threads but ...
1
vote
1answer
26 views
Downloading files in a loop with Python mechanize
I am having trouble downloading multiple files in a loop with Python mechanize. I am also utilizing Beautiful Soup 4. The documentation for either package does not seem to have the answers.
Here is ...
1
vote
1answer
44 views
Empty error message in Selenium WebDriverException
I am attempting to use Selenium/BeautifulSoup to unit test a web page. I am getting an error though that I haven't been able to Google.
selenium.common.exceptions.WebDriverException: Message: ''
I ...
0
votes
0answers
14 views
BeautifulSoup4 Error in GUI Application Py2EXE
I have build a GUI application that uses BeautifulSoup4. After trial and error of finally getting it to open, the application doesn't work, and throws an info box when I close it saying to check the ...
0
votes
1answer
33 views
BeautifulSoup and div value from site using Firefox
After some changes I got thi:
import urllib2
from bs4 import BeautifulSoup
soup = BeautifulSoup(urllib2.urlopen("http://example.com"))
soup.find("div", {"id": "botloc"})
elem = soup.find('div')
...
-1
votes
0answers
26 views
How to join Beautiful Soup tags to create html [closed]
After parsing html with Beautiful Soup I'm left with a list of <class 'bs4.element.Tag'>'s, how do I convert this list back to html?
attempt
import requests, pprint
from bs4 import ...
0
votes
1answer
40 views
Can't parse a second table with beautifulsoup even if the first one works?
I am trying to parse tables using beautifulsoup. The first one on my page was easy but I cannot parse a similar table on the same page. I do not understand why.
Here is the code. Thanks in advance ...
0
votes
3answers
32 views
Beautiful Soup Child Tags Left Over After Extract
When extracting tags I don't want with the list comprehension there are still some tags that were supposed to be removed still there.
import requests, pprint
from bs4 import BeautifulSoup as bs
...
0
votes
1answer
53 views
*Update: How to parse html with python/ beautifulsoup
First, I'm pretty new to Python. I'm trying to scrape contact information from offline websites and output the info to a csv. I'd like to grab the page url(not sure how to do this from the html), ...
0
votes
1answer
69 views
pulling links and scraping those pages in python
I would like to scrape some links from this page.
http://www.covers.com/pageLoader/pageLoader.aspx?page=/data/wnba/teams/pastresults/2012/team665231.html
This gets the links that I want.
boxurl = ...
0
votes
2answers
41 views
BeautifulSoup remove special characters of contents of tag
I want to compare a string with the contents of a html page. But the special characters in the HTML page makes this comparison harder. So I want to remove all the special characters and white spaces ...
0
votes
1answer
35 views
Sending POST data with Requests library in Python
I am unable to send POST data to access my account using requests library in Python. The resulting soup is the same as if no POST has been sent This is the code I have been using and worked on a ...
-6
votes
1answer
47 views
How do I parse this python string?
<a href="index.php?c=playerview&P=1089&LS=100"> \n', ' \n','\', \' Zeppelin-\\n\', \'\\n", \' <td class="stats" colspan="1"valign="top"> \\n\', " \\\\n\', \' ...
0
votes
0answers
29 views
How to handle a search by CSS class in Beautiful Soup bs4 coding style
After documentation it should look like this for bs3:
soup = BeautifulSoup(html_doc)
soup.find("div", {"class":"box text"})
And after documentation for bs4 like this:
soup = ...
1
vote
0answers
47 views
Edit* Having trouble writing a crawler that will scrape a directory of folders of websites and write that info to a .csv
I've included os.walk in this but it still won't output a .csv and I'm not sure it's reading the html dir.
I have a directory of offline websites that I need to scrape for info (e.g. url, email, ...
0
votes
1answer
43 views
simplify this python generation
I am new to python. Is there a way to simplify this:
def getDivs():
divs = soup.findAll(name = "div", attrs = {"class" : "resultCell"}, recursive = True)
for div in divs:
h2 = ...
0
votes
1answer
35 views
Beautiful Soup - Find identified tag in the original text
I need to manipulate certain text in an HTML document after I have identified the text in the original document. Let's say I have this HTML code
<div id="identifier">
<a href="link" ...
0
votes
2answers
29 views
I want to save my parsed HTML file into TXT file
I've parsed a web page showing article.
I want to save the parsed data into text file, but my python shell shows an error like this:
UnicodeEncodeError: 'ascii' codec can't encode character u'\u2019' ...
-1
votes
2answers
33 views
Beautifulsoup search tag through the content of the tag
The following html code:
<div class="rating-list">
<ul class="recommend">
<li>
<span class="recommend-titleInline">Stayed April 2013, traveled as a couple</span>
<ul ...
1
vote
0answers
37 views
Can CDATA sections be preserved by BeautifulSoup?
I'm using BeautifulSoup to read, modify, and write an XML file. I'm having trouble with CDATA sections being stripped out. Here's a simplified example.
The culprit XML file:
<?xml version="1.0" ...
0
votes
1answer
24 views
Need to find text with RegEx and BeautifulSoup
I'm trying to parse a website to pull out some data that is stored in the body such as this:
<body>
<b>INFORMATION</b>
Hookups: None
Group Sites: No
Station: No
...
0
votes
1answer
22 views
how to skip action on first value returned from a regex search?
the following:
searches contents for spans of class blue
grabs the text from the spans (using beautiful soup's get_text method)
outputs the values on lines
for each line, replaces some text
does a ...
0
votes
0answers
38 views
Getting only data out of HTML page in python
Im working on a project for which I need the content of an HTML page given ts url.
Im doing something like this
con=urllib.request.urlopen(url)
a=con.read()
con.close()
soup = BeautifulSoup(a)
...
0
votes
1answer
17 views
information lost when using beautifulsoap to parse a html page
I'm writing a web spider to get some information from a website.when i parse this page http://www.tripadvisor.com/Hotels-g294265-oa120-Singapore-Hotels.html#ACCOM_OVERVIEW
, I find that some ...
0
votes
1answer
42 views
Use the contents of a div as more Beautful Soup input
This must be an easy answer since it's the purpose of BS4, but I'm stumped.
I have an HTML page that consists of some number of main divs, each containing similar HTML. I want to loop through the ...
1
vote
1answer
34 views
how to extract complete text in paragraph tag using beautifulsoup
I need to extract complete text except <p><a href><rel> etc from the following html code.
<p>Many of the features that made the Samsung Galaxy S4 one of the most anticipated ...
0
votes
1answer
53 views
Parsing Table With Beautiful Soup
Im writing a program that goes to my school grades site and takes my grades and makes them my desktop background but once i get to my grades i cant get how to parse them out of the large table
Here ...
-1
votes
2answers
39 views
Python, Install Beautiful Soup4-4.1.3 on Mac. Access Denied?
I can't figure out how to install BeautifulSoup4 on Python.
I've downloaded it, unpacked it and moved it to User directory.
Typed in Terminal 'cd beautifulsoup4-4.1.3' to enter directory
Then I type ...




