0
votes
2answers
38 views

Scraping value from field on a page

I'm scraping a page that has a link like this: <a id="something" href="place" class="thing" data="12345"> <span class="otherthing"></span></a> I'd like to extract the number ...
0
votes
1answer
43 views

Divide and scrape <tr> groups separated by unique <td> using beautiful

So the webpage that I'm trying to scrape is something like this: ... <tr><td colspan=3><BR><div class="list">Foo:</div></td></tr> <tr><td><img ...
0
votes
0answers
209 views

Web Scraping in Python and Beautiful Soup

I have been using Python's Beautiful Soup library to scrape pages, however I am running into a few limitations. I am scraping different (usually news) websites all the time and do not know ahead of ...
0
votes
3answers
281 views

Python Web-Scraping using Beautiful Soup on a messy Site

I want to scrape the following three data points from this site: %verified, the numerical value for FAR, and the numerical value for POD. I'm trying to do this in BeautifulSoup, but I'm not practiced ...
1
vote
1answer
461 views

Python Scraping JavaScript using Selenium and Beautiful Soup

I'm trying to scrape a JavaScript enables page using BS and Selenium. I have the following code so far. It still doesn't somehow detect the JavaScript (and returns a null value). In this case I'm ...
2
votes
1answer
93 views

How can I scrape bank of america for business hours?

Hi I was wondering how I can use beautifulsoup to scrape bank of america for its hours. For example, if the url is ...
0
votes
2answers
69 views

Beautiful soup check for tag in tag

I'm using Beautiful Soup 4 to scrape a page. There's a block of text I don't want: <p class="MsoNormal" style="text-align: center"><b> <span lang="EN-US" ...
0
votes
1answer
142 views

Issue with html tags while scraping data using beautiful soup

Common piece of code: # -*- coding: cp1252 -*- import csv import urllib2 import sys import time from bs4 import BeautifulSoup from itertools import islice page = ...
1
vote
1answer
163 views

How to download images from a list of scraped URLs? [duplicate]

Possible Duplicate: How to download image using requests I have this Python script for scraping image URLs of a tumblr blog, and would like to download them to a local folder on my desktop. ...
1
vote
1answer
81 views

Issue in scraping data from a website using beautiful soup

I am trying to scrape list of 41 items & their prices from a website. But my output csv is missing some 2-3 items which come at the end of the page. Reason for this being, some devices have their ...
0
votes
1answer
32 views

Not getting any output nor any error for the following code?

i used the following code to scrape data from url(mentioned in the code). I ran the code but its not giving any output nor throwing any error? i am new to python language, it might be a silly problem. ...
0
votes
1answer
42 views

Issue in updating scraped data to the already existing csv using beautiful soup

I want to update scraped data from a webpage to a already existing csv, which I generated when I ran the scraping code for 1st time. I want the new data to get appended below already scraped rows. ...
1
vote
1answer
92 views

What's wrong with this for scraping the table and data needed?

I'm trying to scrape data for Miami Heat and their opponent from a table at http://www.scoresandodds.com/grid_20111225.html. The problem I have is that tables for NBA and NFL and other sports are all ...
1
vote
1answer
73 views

Scraping majority of text in body

I'm learning how to use lxml/BeautifulSoup and I was wondering how I can do this as convenient as possible. The source has this structure for its body: <p class = "info"> <!-- a bunch ...
1
vote
2answers
154 views

beautifulsoup 4: Segmentation fault (core dumped)

I crawled the following page: http://www.nasa.gov/topics/earth/features/plains-tornadoes-20120417.html But I got Segmentation fault (core dumped) when calling: BeautifulSoup(page_html), where ...
2
votes
3answers
195 views

Selenium between HTML tags

What's the best way to get all the HTML in a page that is created by Javascript to pass to BeautifulSoup? I'm currently using: from selenium import webdriver from selenium.common.exceptions import ...
0
votes
0answers
247 views

Python scraping beautiful soup— output to excel

I want to take a blog lets use this as an example...www.forbes.com/sites/zillow and scrape it for content across all pages with the below output [in a csv if possible] link = ...
0
votes
2answers
82 views

how to get text value between the end of </h3> and <br/>

I am trying to doing screen scraping using python and beautiuflsoup. I met one problem is that I dont know how to get the text value before <br/> Here is one example: <h3> Francois ...
-1
votes
2answers
57 views

Scrape Site With Incremental IDs

I have a site in the following format: http://www.domain.com/membership/member_zoom.php?value value starts at 1000 and stops around 15,000 Here is a sample of the source: <h1>Member ...
0
votes
1answer
261 views

Problems Scraping a Page With Beautiful Soup

I am using Beautiful Soup to try and scrape a page. I am trying to follow this tutorial. I am trying to get the contents of the following page after submitting a Stock Ticker Symbol: ...
0
votes
2answers
161 views

BeautifulSoup: Finding a specific URL in html and printing

Ok, so I have this html-page (full of different urls), where I want to grab a single url and print it. The webpage is: https://bdkv2.borger.dk/foa/Sider/default.aspx?fk=22&foaid=11523251 I want ...
0
votes
3answers
263 views

web scraping tool or library that automatically finds text content without rules set

Is there a web scraping tool or library that auto-detects repeating HTML blocks and scrapes the text content inside the blocks, thus removing the need for human to manually input the rules - CSS ...
3
votes
2answers
2k views

python: Google Search Scraper with BeautifulSoup

Goal: Pass a search string to search on google and scrape url, title and the small description that get publish along with the url title. I have following code and at the moment my code only gives ...
0
votes
1answer
159 views

Some website content causes BeautifulSoup (and lxml) to restart Python session

I'm fetching and parsing a medium-large quantity of webpages. I noticed my script was spontaneously ending with a Python session restart. Thus far it only seems to happen when I try to make soup out ...
2
votes
2answers
2k views

BeautifulSoup get_text does not strip all tags and JavaScript

I am trying to use BeautifulSoup to get text from web pages. Below is a script I've written to do so. It takes two arguments, first is the input HTML or XML file, the second output file. import sys ...
0
votes
2answers
479 views

how to extract text within font tag using beautifulsoup

I am making my first program with beautifulsoup and my html file has code snippet like this ...... ...... ...... <font face="verdana" size="3">5 n i D 1 C</font> ...... ...... I want ...
4
votes
1answer
627 views

Find all tables in html using BeautifulSoup

I want to find all tables in html using BeautifulSoup. Inner tables should be included in outer tables. I have created some code which works and it gives expected output. But, I don't like this ...
1
vote
1answer
340 views

Windmill not getting all html content

I'm trying to scrape the data off a web page using the python Windmill framework. However I'm having problems getting the HTML table content off a page. The table is generated by Javascript - hence ...
0
votes
2answers
949 views

Python BeautifulSoup on javascript tables with multiple pages

I used to have a python script that pulled data from the below table properly using Mechanize and BeautifulSoup. However, this site has recently changed the encoding of the table to javascript, and ...
0
votes
0answers
146 views

BeautifulSoup is ending a document where it shouldn't be and I can't figure out why

Goal: I'm using Mechanize to connect to my school's website where I can view my final grades. I want to put this script on a cron timer, have it scrape the site, check for changes, and email me if ...
1
vote
1answer
866 views

How do I get rid of characters like &#x27; that appear instead of apostrophes? [duplicate]

Possible Duplicate: Convert XML/HTML Entities into Unicode String in Python I am attempting to scrape a website using Python. I import and use the urllib2, BeautifulSoup and re modules. ...
2
votes
2answers
751 views

Python BeautifulSoup parsing

I am trying to scrape some content (am very new to Python) and I have hit a stumbling block. The code I am trying to scrape is: <h2><a href="/best-sellers/sj-b9822.html">Spear & ...
3
votes
1answer
247 views

beautifulSoup screenscraping list of improperly nested <ul>s

I'm (very) new to BeautifulSoup, and for the last three days trying to get a list of churches from http://www.ucanews.com/diocesan-directory/html/ordinary-of-philippine-cagayandeoro-parishes.html. It ...
1
vote
2answers
186 views

How would I extract the value of this HTML element attribute with Beautiful Soup?

I am developing a small tool to scrape a webpage. I am using Beautiful Soup. I would like to fetch the class id from the page. The HTML code looks something like this: <span class='class_id' ...
2
votes
3answers
958 views

Screen Scraping a Javascript based webpage in Python

I am working on a screen scraping tool in Python. But, as I look through the source of the webpage, I noticed that most of the data is coming through Javascript. Any idea, how to scrape javascript ...
-3
votes
1answer
191 views

Beautifulsoup scraping book catalogue

for i in range(1,1000000): page = urllib2.urlopen("http://www.palgrave.com/products/title.aspx?pid="+str(i)) print "http://www.palgrave.com/products/title.aspx?pid="+str(i) soup = ...
1
vote
2answers
2k views

Python Web Scraping; Beautiful Soup

This was covered in this post: Python web scraping involving HTML tags with attributes But I haven't been able to do something similar for this web page: ...
0
votes
2answers
402 views

Why do I get a “IndexError: list index out of range”? (Beautiful Soup)

I am trying to scrape a table here very similar in structure to my previous question. I just changed the attributes names but I am getting index out of range error. This is the TR: <TR ...
-3
votes
2answers
290 views

Python screen scrape whole website

I want to make a little program which will use every single something-meaning word from any website It's meant to be in python and I've heard about BeautifulSoup but I don't quite know how to use it ...
2
votes
2answers
563 views

How to select some urls with BeautifulSoup?

I want to scrape the following information except the last row and "class="Region" row: ... <td>7</td> <td bgcolor="" align="left" style=" width:496px"><a class="xnternal" ...
0
votes
2answers
114 views

how to obtain HTML-free contents for non-div tags

I want to find the HTML-free content of all the tags except for tags inside <div id="nav"> For example, with the following HTML: <div id="nav"> <h1>Navigate!</h1> ...
0
votes
1answer
122 views

Beautiful Soup string method behaving weirdly

I'm trying to get an image in this page - ...
0
votes
2answers
585 views

Avoiding 503 errors with urllib2

I'm new to web scraping with python, so I don't know if I'm doing this right. I'm using a script that calls BeautifulSoup to parse the URLs from the first 10 pages of a google search. Tested with ...
0
votes
3answers
231 views

Python- is there a module that will automatically scrape the content of an article off a webpage?

I know there is lxml and BeautifulSoup, but that won't work for my project, because I don't know in advance what the HTML format of the site I am trying to scrape an article off of will be. Is there a ...
1
vote
2answers
538 views

Scraping images from one site to another

I'm new here, and quite new to web development in general. My background is in 3D modeling and design, but I recently started a project that I think could be a nice resource for the 3D community. ...
4
votes
3answers
2k views

Python - Easiest way to scrape text from list of URLs using BeautifulSoup

What's the easiest way to scrape just the text from a handful of webpages (using a list of URLs) using BeautifulSoup? Is it even possible? Best, Georgina
0
votes
2answers
83 views

Any way to suppress/ignore specific types of errors when using BeautifulSoup

There are many elements that I need on each page I scrape, but many pages don't have all the items I need, so I end up having to wrap each and every item grab in try: itemNeeded = ...
3
votes
2answers
1k views

BeautifulSoup: How do I extract all the <li>s from a list of <ul>s that contains some nested <ul>s?

My source code looks like: <h3>Header3 (Start here)</h3> <ul> <li>List items</li> <li>Etc...</li> </ul> <h3>Header 3</h3> ...
10
votes
5answers
5k views

Best way for a beginner to learn screen scraping with python

This might be one of thoose questions that are difficult to answer, but here goes: I dont consider my self programmer - but I would like to :-) I've learned R, because I was sick and tired of spss, ...
0
votes
1answer
331 views

BeautifulSoup is choking on jQuery script, any known workaround?

I'm giving BeautifulSoup an html document and simply by constructing a BeautifulSoup object instance with the full html, it seems to choke on the following line of a jQuery script that's embedded ...

1 2