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.

learn more… | top users | synonyms

2
votes
1answer
23 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 ...
-1
votes
0answers
23 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 ...
1
vote
1answer
26 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
1answer
13 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
0answers
13 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 ...
0
votes
0answers
12 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
29 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') ...
0
votes
1answer
49 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), ...
-1
votes
0answers
23 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
3answers
29 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
35 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 ...
35
votes
3answers
7k views

Is it worth learning Scrapy?

I'm a big fan of Python and currently I have taken a lot of interest in web-scraping. At the moment I rely on the elegant combination of Mechanize and Beautiful Soup to automate almost all of my ...
0
votes
1answer
64 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 = ...
3
votes
2answers
2k views

How can i grab CData out of BeautifulSoup

I have a website that I'm scraping that has a similar structure the following. I'd like to be able to grab the info out of the CData block. I'm using BeautifulSoup to pull other info off the page, ...
0
votes
2answers
36 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
32 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&amp;P=1089&amp;LS=100"> \n', ' \n','\', \' Zeppelin-\\n\', \'\\n", \' <td class="stats" colspan="1"valign="top"> \\n\', " \\\\n\', \' ...
2
votes
1answer
70 views

How to stop BeautifulSoup escaping inline javascript

I have discovered that BeautifulSoup 4 appears to escape some characters in inline javascript: >>> print s <DOCTYPE html> <html> <body> <h1>Test page</h1> ...
0
votes
0answers
25 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
44 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
29 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
30 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
34 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
20 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
1answer
21 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
41 views

Beautifulsoup lost nodes

I am using Python and Beautifulsoup to parse HTML-Data and get p-tags out of RSS-Feeds. However, some urls cause problems because the parsed soup-object does not include all nodes of the document. ...
0
votes
0answers
36 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
15 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
51 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 ...
0
votes
1answer
40 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 ...
0
votes
2answers
44 views

Extracting Tags from BeautifulSoup

I am trying to get the Body-Tag from http://feeds.reuters.com/~r/reuters/technologyNews/~3/ZyAuZq5Cbz0/story01.htm but BeautifulSoup doesn't find it. Is this because of invalid HTML? If so, how can I ...
0
votes
1answer
23 views

Extract tag contents as text (QUOTE_TAGS equivalent) in BeautifulSoup 4

BeautifulSoup 3 has the nice feature that it will not try to interpret the contents of a <textarea> tag as html - it quotes it as text instead. This behavior can be had for other tags by ...
0
votes
4answers
513 views

Beautifulsoup and AJAX-table problem

I am making a script that scrapes the games of the Team Liquid database of international StarCraft 2 games. (http://www.teamliquid.net/tlpd/sc2-international/games) However I come accros a problem. I ...
1
vote
1answer
27 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 ...
1
vote
1answer
39 views

BeautifulSoup returning incorrect text

I'm trying to scrape the below site for live tennis scores. When the match is over the elements I'm scraping changes and I can get the score, but during the match when I search for the associated ...
-1
votes
2answers
37 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 ...
2
votes
1answer
59 views

Scraping Webpage using Python

Im using selenium to access my school grades and after that i want to be able to scrape my grades from the site but i dont know how Here is my login code: from selenium import webdriver from ...
0
votes
1answer
37 views

Techniques to masquerade a web scraper as a real client?

I am writing a small experimental application that requires data to be scraped from a number of websites. Currently I have added a random delay (2-20 sec) between subsequent requests and using ...
1
vote
2answers
98 views

FLIPKART.COM product 'price' and product 'title' extraction using PYTHON

I have written the following Python code to extract the PRICE of the item specified from flipkart.com import urllib2 import bs4 import re item="Wilco Classic Library: Autobiography Of a Yogi ...
0
votes
1answer
43 views

Find all html elements whose contains a specific class

I want BeautifulSoup to find all element in html page whose have a certain class. But they can also have extra classes. For example: soup.findAll('tr', {'class': 'super_class1'}) This code only ...
0
votes
1answer
63 views

BeautifulSoup can't parse YouTube pages

I am trying to do some simple web page scraping using Python's BeautifulSoup library, and I run into a UnicodeDecodeError when a try to parse most YouTube pages. It seems YouTube is serving up HTMl ...
0
votes
1answer
61 views

How can I extract XML text using python BeautifulSoup?

I'm trying to extract dialog from the Folger Library Shakespeare TEI XML editions. A typical chunk of dialog looks like this: <sp xml:id="sp-0024" who="#HORATIO"> <speaker ...
0
votes
3answers
79 views

Error importing BeautifulSoup - Conflict with Python version

I installed BeautifulSoup with the command: sudo easy_install BeautifulSoup4 I got the message: Searching for BeautifulSoup4 Best match: beautifulsoup4 4.1.3 Processing ...
0
votes
1answer
30 views

How to remove duplicate values from a beautiful soup result set whilst preserving order?

I have a scenario where I am searching through values in a beautiful soup result set and treating them differently depending on their contents, eg: for i in bs_result_set: if 'this unique string' ...
1
vote
6answers
104 views

How to read a whole file in Python? To work universally in command line

How to read a whole file in Python? I would like my script to work however it is called script.py log.txt script.py < log2.txt python script.py < log2.txt python -i script.py ...
0
votes
1answer
42 views

Beautiful Soup findAll doen't find them all

i'm trying to parse a website and get some info with BeautifulSoup.findAll but it doesn't find them all.. I'm using python3 the code is this #!/usr/bin/python3 from bs4 import BeautifulSoup from ...
0
votes
1answer
28 views

Recursive search with Beautiful Soup

I am trying to extract info from nested html tags: <div id="container"> <div id="cover_1" class="default"></div> <div id="container_2"> <div ...
0
votes
1answer
52 views

Extracting links in a class from a webpage

I am trying to extract links from a blog using this python code: #!/usr/bin/env python """ Extract all links from a web page ================================= Author: Laszlo Szathmary, 2011 ...

1 2 3 4 5 32