11
votes
13answers
430 views
Win32.: How to scrape HTML without regular expressions?
A recent blog entry by a Jeff Atwood says that you should never parse HTML using regular expressions - yet doesn't give an alternative.
i want to scrape search search results, extracting values:
…
0
votes
2answers
52 views
Download web page with images and stylesheets and (optionally) E-mailing it
I need to make snapshots of web pages programmatically using PHP and get them into a HTML E-Mail.
I tried wget --page-requisites. It downloads everything all right, but it doesn't change the HTML …
0
votes
2answers
30 views
Extracting html elements in a given region?
Given a region defined by a rectangle and a url, is there any way to determine what elements lie within the given rectangle on the page at the given url?
EDIT: Screen resolution, Font size, etc.. …
1
vote
2answers
65 views
Simple screen scraping and analyze in .NET
I'm building a small specialized search engine for prise info. The engine will only collect specific segments of data on each site. My plan is to split the process into two steps.
Simple screen …
1
vote
2answers
42 views
Has anybody ever tried to screen scrape data from sites built with SharePoint?
Or at least could anybody point me to docs about its crazy proprietary url parameters and html field name obfuscation? I can only suppose this is caused by SharePoint...
The main problem is, given a …
0
votes
3answers
69 views
Scraping hidden HTML (when visible = false) using Hpricot (Ruby on Rails)
Hi, I've come across an issue which unfortunately I can't seem to surpass, I'm also just a newborn to Ruby on rails unfortunately hence the number of questions
I am attempting to scrape a webpage …
0
votes
1answer
61 views
Non-trivial screen scraping selections using pQuery
I'm using pQuery (a Perl port of jQuery) to select elements and retrieve text from a HTML-document.
Consider the following markup:
<x>
<y>code1</y>
<z>stuff</z>
…
1
vote
2answers
21 views
Scrape web page contents
I've just started looking into this, I want to scrape my Netgear Router (http://192.168.0.1/setup.cgi?next_file=stattbl.htm) stats into a csv file.
I run Win & Linux, but mainly know C++, any …
3
votes
4answers
569 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 …
0
votes
1answer
68 views
How do I data mine various news sources?
I'm working on a free web application that will analyze top news stories throughout the day and provide stats. Most news websites offer RSS feeds, which works fine for knowing which stories to …
0
votes
4answers
464 views
I’d like to scrape the iTunes top X RSS feed and insert into a dB…
Preferably I'd like to do so with some bash shell scripting, maybe some PHP or PERL and a MySQL db. Thoughts?
0
votes
2answers
61 views
Best screen scraper, simple html dom or snoopy?
which one is better for screen scraping? simple html dom or snoopy ??
i use simple html dom and find it comfortable..
does snoopy has any advantage over simple html dom?
my requirements : if i wanna …
0
votes
1answer
27 views
How to convert xhtml to xml after screen scraping in asp.net?
Hi,
How to convert the retrieved xhtml string to xml file? Are there any FCL libraries to do this?
0
votes
2answers
316 views
How to find inbound links to a given URL on the fly?
Technorarati's got their Cosmos api, which works fairly well but limits you to noncommercial use and no more than 500 queries a day.
Yahoo's got a Site Explorer InLink Data API, but it defines the …
0
votes
1answer
196 views
Python Scrapy , how to define a pipeline for an item?
I am using scrapy to craw diferent sites, for each site I have an Item (different information is extracted)
Well, for example I have a generic pipeline (most of information is the same) but now I am …
