Screen-scraping, also known as web-scraping or data-scraping is a software technique use to collect and parse information from user interfaces.

learn more… | top users | synonyms (1)

186
votes
41answers
51k views

Options for HTML scraping?

I'm thinking of trying Beautiful Soup, a Python package for HTML scraping. Are there any other HTML scraping packages I should be looking at? Python is not a requirement, I'm actually interested in ...
36
votes
13answers
34k views

How to implement a web scraper in PHP?

What built-in PHP functions are useful for web scraping? What are some good resources (web or print) for getting up to speed on web scraping with PHP?
94
votes
8answers
66k views

Web scraping with Python

I'd like to grab daily sunrise/sunset times from here. Is it possible to scrape web content with Python? what are the modules used? Is there any tutorial available?
18
votes
7answers
16k views

HTML Scraping in Php

I've been doing some html scraping in PHP using regular expressions. This works, but the result is finicky and fragile. Has anyone used any packages that provide a more robust solution? A config ...
25
votes
9answers
17k views

What's a good tool to screen-scrape with Javascript support?

Is there a good test suite or tool set that can automate website navigation -- with Javascript support -- and collect the HTML from the pages? Of course I can scrape straight HTML with BeautifulSoup. ...
20
votes
8answers
7k views

Is there a PHP equivalent of Perl's WWW::Mechanize?

I'm looking for a library that has functionality similar to Perl's WWW::Mechanize, but for PHP. Basically, it should allow me to submit HTTP GET and POST requests with a simple syntax, and then parse ...
16
votes
6answers
10k views

Screen Scraping from a web page with a lot of Javascript

I have been asked to write an app which screen scrapes info from an intranet web page and presents the certain info from it in a nice easy to view format. The web page is a real mess and requires the ...
11
votes
4answers
10k views

How to programmatically log in to a website to screenscape?

I need some information from a website that's not mine, in order to get this information I need to login to the website to gather the information, this happens through a HTML form. How can I do this ...
24
votes
6answers
8k views

Headless Browser for Python (Javascript support REQUIRED!)

I need a headless browser which is fairly easy to use (I am still fairly new to Python and programming in general) which will allow me to navigate to a page, log into a form that requires Javascript, ...
20
votes
7answers
15k views

How do you screen scrape ajax pages?

How do you screen scrape ajax pages?
20
votes
5answers
35k views

Download image file from the HTML page source using python?

I am writing a scraper that downloads all the image files from a HTML page and saves them to a specific folder. all the images are the part of the HTML page.
14
votes
3answers
8k views

jsoup posting and cookie

I'm trying to use jsoup to login to a site and then scrape information, I am running into in a problem, I can login successfully and create a Document from index.php but I cannot get other pages on ...
20
votes
22answers
10k views

Protection from screen scraping [closed]

Following on from my question on the Legalities of screen scraping, even if it's illegal people will still try, so: What technical mechanisms can be employed to prevent or at least disincentivise ...
9
votes
7answers
18k views

Python regular expression for HTML parsing (BeautifulSoup)

I want to grab the value of a hidden input field in HTML. <input type="hidden" name="fooId" value="12-3456789-1111111111" /> I want to write a regular expression in Python that will return ...
38
votes
7answers
14k views

Headless, scriptable Firefox/Webkit on linux?

I'm looking to automate some web interactions, namely periodic download of files from a secure website. This basically involves entering my username/password and navigating to the appropriate URL. I ...
20
votes
8answers
9k views

PHP CSS Selector Library? [closed]

Is there a PHP class/library that would allow me to query an XHTML document with CSS selectors? I need to scrape some pages for data that is very easily accessible if I could somehow use CSS selectors ...
7
votes
1answer
4k views

Options for web scraping - C++ version only

I'm looking for a good C++ library for web scraping. It has to be C/C++ and nothing else so please do not direct me to Options for HTML scraping or other SO questions/answers where C++ is not even ...
11
votes
5answers
3k views

scrape html generated by javascript with python

I need to scrape a site with python. I obtain the source html code with the urlib module, but I need to scrape also some html code that is generated by a javascript function (which is included in the ...
7
votes
2answers
8k views

What's the best approach for parsing XML/'screen scraping' in iOS? UIWebview or NSXMLParser?

I am creating an iOS app that needs to get some data from a web page. My first though was to use NSXMLParser initWithContentsOfURL: and parse the HTML with the NSXMLParser delegate. However this ...
-1
votes
1answer
223 views

php - Fastest way to check presence of text in many domains (above 1000)

I have a php script running and using cURL to retrieve the content of webpages on which I would like to check for the presence of some text. Right now it looks like this: for( $i = 0; $i < ...
37
votes
4answers
20k views

Scrape web pages in real time with Node.js

What's a good was to scrape website content using Node.js. I'd like to build something very, very fast that can execute searches in the style of kayak.com, where one query is dispatched to several ...
15
votes
6answers
4k views

How to download any(!) webpage with correct charset in python?

Problem When screen-scraping a webpage using python one has to know the character encoding of the page. If you get the character encoding wrong than your output will be messed up. People usually use ...
11
votes
3answers
4k views

Click on a javascript link within python?

I am navigating a site using python's mechanize module and having trouble clicking on a javascript link for next page. I did a bit of reading and people suggested I need python-spidermonkey and ...
7
votes
10answers
12k views

How can I screen scrape with Perl?

I need to display some values that are stored in a website, for that I need to scrape the website and fetch the content from the table. Any ideas?
9
votes
5answers
2k views

How can I use Perl to grab text from a web page that is dynamically generated with JavaScript?

There is a website I am trying to pull information from in Perl, however the section of the page I need is being generated using javascript so all you see in the source is: <div ...
19
votes
2answers
5k views

Beautiful Soup cannot find a CSS class if the object has other classes, too

if a page has <div class="class1"> and <p class="class1">, then soup.findAll(True, 'class1') will find them both. If it has <p class="class1 class2">, though, it will not be found. ...
4
votes
8answers
8k views

Text Extraction from HTML Java

I'm working on a program that downloads HTML pages and then selects some of the information and write it to another file. I want to extract the information which is intbetween the paragraph tags, but ...
1
vote
6answers
6k views

screen scraping technique using php

How to screen scrape a particular website. I need to log in to a website and then scrape the inner information. How could this be done? Please guide me. Duplicate: How to implement a web scraper ...
23
votes
8answers
29k views

How can I scrape an HTML table to CSV?

The Problem I use a tool at work that lets me do queries and get back HTML tables of info. I do not have any kind of back-end access to it. A lot of this info would be much more useful if I could ...
14
votes
6answers
2k views

WebBrowsing in C# - Libraries, Tools etc. - Anything like Mechanize in Perl?

Looking for something similar to Mechanize for .NET... If you don't know what Mechanize is.. http://search.cpan.org/dist/WWW-Mechanize/ I will maintain a list of suggestions here. Anything for ...
10
votes
3answers
2k views

Can scrapy be used to scrape dynamic content from websites that are using AJAX?

I have recently been learning Python and am dipping my hand into building a web-scraper. It's nothing fancy at all; its only purpose is to get the data off of a betting website and have this data put ...
13
votes
6answers
13k views

Simple Screen Scraping using jQuery

I have been playing with the idea of using a simple screen-scraper using jQuery and I am wondering if the following is possible. I have simple HTML page and am making an attempt (if this is possible) ...
10
votes
2answers
4k views

View Generated Source (After AJAX/JavaScript) in C#

Is there a way to view the generated source of a web page (the code after all AJAX calls and JavaScript DOM manipulations have taken place) from a C# application without opening up a browser from the ...
1
vote
2answers
2k views

C# WebClient - View source question

I'm using a C# WebClient to post login details to a page and read the all the results. The page I am trying to load includes flash (which, in the browser, translates into HTML). I'm guessing it's ...
-2
votes
2answers
500 views

Screen Scraping of aspx page using curl [closed]

I am using this code, and its not working. Please help $url = "http://www.riogrande.com/Category/Findings-and-Finished-Jewelry/132/Bails-and-Enhancers/472"; $file=file_get_contents($url); ...
8
votes
6answers
8k views

Nokogiri, open-uri, and Unicode Characters

I'm using Nokogiri and open-uri to grab the contents of the title tag on a webpage, but am having trouble with accented characters. What's the best way to deal with these? Here's what I'm doing: ...
14
votes
1answer
5k views

Indian Railway Train Search API

Is there any API provided by Indian Railways to search its train network, time-tables etc. There are many sites out there which show time-table etc. I searched Google but couldn't find any info on Web ...
9
votes
7answers
5k views

Programmatic Python Browser with JavaScript

I want to screen-scrape a web-site that uses JavaScript. There is mechanize, the programmatic web browser for Python. However, it (understandably) doesn't interpret javascript. Is there any ...
13
votes
3answers
2k views

Is there a simple way in R to extract only the text elements of an HTML page?

Is there a simple way in R to extract only the text elements of an HTML page? I think this is known as 'screen scraping' but I have no experience of it, I just need a simple way of extracting the ...
7
votes
6answers
2k views

Scraping websites with Javascript enabled?

I'm trying to scrape and submit information to websites that heavily rely on Javascript to do most of its actions. The website won't even work when i disable Javascript in my browser. I've searched ...
10
votes
1answer
2k views

Executing Javascript from Python

I have HTML webpages that I am crawling using xpath. The etree.tostring of a certain node gives me this string: <script> <!-- function escramble_758(){ var a,b,c a='+1 ' b='84-' ...
10
votes
4answers
11k views

How to fetch HTML in Java

Without the use of any external library, what is the simplest way to fetch a website's HTML content into a String?
9
votes
3answers
2k views

OpenGL/D3D: How do I get a screen grab of a game running full screen in Windows?

Suppose I have an OpenGL game running full screen (Left 4 Dead 2). I'd like to programmatically get a screen grab of it and then write it to a video file. I've tried GDI, D3D, and OpenGL methods (eg ...
6
votes
1answer
7k views

Using Python and Mechanize to submit form data and authenticate

I want to submit login to the website Reddit.com, navigate to a particular area of the page, and submit a comment. I don't see what's wrong with this code, but it is not working in that no change is ...
3
votes
3answers
2k views

Convert a relative URL to an absolute URL with Simple HTML DOM?

When I'm scraping content from some pages, the script gives a relative URL. Is it possible to get a absolute URL with Simple HTML DOM?
2
votes
4answers
8k views

Scrape web page contents

I am developing a project, for which I want to scrape the contents of a website in the background and get some limited content from that scraped website. For example, in my page I have "userid" and ...
4
votes
2answers
3k views

Download an Entire Website in C#

Forgive my ignorance on the subject I am using string p="http://" + Textbox2.text; string r= textBox3.Text; System.Net.WebClient webclient=new System.Net.Webclient(); ...
3
votes
5answers
7k views

Screen Scraping HTML with C#

I have been given the task at work of screen scraping one of our legacy web apps to extract certain data from the code. The data is formatted and "should" be displayed exactly the same every time. I ...
0
votes
3answers
904 views

Parse a .Net Page with Postbacks

I need to read data from an online database that's displayed using an aspx page from the UN. I've done HTML parsing before, but it was always by manipulating query-string values. In this case, the ...
0
votes
6answers
745 views

extract value from web page

Hi I have a website's home page that I am reading in using Curl and I need to grab the number of pages that the site has. The information is in a div:- <div class="pager"> <span ...

1 2 3 4 5