25
votes
4answers
287 views
Web scraping etiquette
I'm considering writing a simple web scraping application to extract information from a website that does not seem to specifically prohibit this.
I've checked for other alternatives (eg RSS, web …
0
votes
1answer
67 views
Screen scraping
Hi, I want to scrape data from
5
votes
7answers
101 views
Screen scraping with Python
Does Python have screen scraping libraries that offer JavaScript support?
I've been using pycurl for simple HTML requests, and Java's HtmlUnit for more complicated requests requiring JavaScript …
1
vote
1answer
26 views
ruby mechanize in Facebook
I'm trying to click the Settings button on the home page, but when I do I get this page back:
#<WWW::Mechanize::Page
{url
#<URI::HTTP:0x1023c5fc0 …
6
votes
5answers
123 views
WebBrowsing in C# - Libraries, Tools etc. - Anything like Mechanize in Perl?
Looking for something similar to Mechanize for .NET C#.
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 …
1
vote
3answers
49 views
HttpRequest: pass through AuthLogin
I would need to make a simple program that logs with given credentials to certain website and then navigate to some element (link).
It is even possible (I mean this Authlogin thing)?
EDIT: SORRY - I …
3
votes
2answers
48 views
C#: Need to render a form/control on an “imaginary” desktop
Okay, here's what I'm trying to do. First I'll explain the end result I'm trying to achieve in case there are other ideas on how to do this.
I'm making a screen capture utility that takes a screen …
1
vote
1answer
68 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 …
0
votes
3answers
130 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();
…
5
votes
4answers
85 views
Does any open, simply extendible web crawler exists?
I search for a web crawler solution which can is mature enough and can be simply extended. I am interested in the following features... or possibility to extend the crawler to meet them:
partly just …
2
votes
2answers
46 views
Is there a library similar to lxml or nokogiri for Java?
I want to do some screen scraping, ideally using CSS selectors and not XPath. Is there a library similar to ones in Ruby or Python?
0
votes
1answer
32 views
How to offer a website scrapping service like dapper.com, diffbot.com? (especially the visual selection)
Hi,
I'm trying to build a functionality for the users of my site to "screen scrap" websites of their choice and I'm looking for a toolkit that allows me to do that OR a third party site that allows …
1
vote
5answers
69 views
How to display content from other sites on my own page?
I know this isn't a specific programming question, but I really need to know how this can be done. How does a website like this:
http://www.dogpile.com/
display search results from google and other …
1
vote
1answer
17 views
Can I get my instance of mechanize.Browser to stay on the same page after calling b.form.submit()?
In Python's mechanize.Browser module, when you submit a form the browser instance goes to that page. For this one request, I don't want that; I want it just to stay on the page it's currently on and …
1
vote
1answer
37 views
Automating WebTrends analysis
Every week I access server logs processed by WebTrends (for about 7 profiles) and copy ad clickthrough and visitor information into Excel spreadsheets. A lot of it is just accessing certain sections …
