Tagged Questions
0
votes
0answers
27 views
How to push buttons and submit forms while web scraping in node.js
So my question is very simple, I've been able to find some places suggesting different options but nothing that has been clear or reliable.
I have different problems.
1
While web scraping, I need ...
0
votes
1answer
57 views
iOS - Aggregating scraped data in a unique way, will I be rejected?
I am building some services that will scrape data from a number of websites and be stored into a database. I am then using services to call this data into an iOS app and display it in an organized ...
0
votes
0answers
30 views
Unique path results in Google searches?
I have a search that I'm performing wherein I need to gather certain unique paths.
For example, right now I'm wanting to find the portion of the string www.somedomain.tld/unique_identifier while the ...
1
vote
1answer
988 views
Looking for a good automated web scraping tool
I am trying to scrap some information from a large website database and would happy to hear if you have some recommendations on a good scraping tool.
The website generated a query with several ...
0
votes
0answers
261 views
Java screen scraping with JTidy - Parsing HTML values
So what I'm trying to accomplish is scraping an IMDB webpage for data from webseries. Problem is when I convert the page to a DOM object and try to get values it's not as easy as it looks.
For ...
1
vote
1answer
216 views
Is there a way to make more than 10K requests on Google search from the same IP?
I am currently working to an app that requires to scrape data from Google's search results. For example google.com/search?q=domain.com and so on. But Google blocks my IP address after making some ...
0
votes
0answers
103 views
Scraping all the topics a user follows on Quora
I'm using Quora-Personal-Analytics to get the names of all topics Marc Bodnick is following. Last year this used to work:
ruby QuoraCrawler.rb "Marc-Bodnick" -t;
ruby QuoraStats.rb "Marc-Bodnick" -t
...
0
votes
3answers
506 views
What is considered good crawling/scraping speed?
I'm writing some code to crawl webpages to extract product price data. On some pages I need to visit more than 3k pages per day, so I don't want to blow up their servers by requesting 100 pages/sec.
...
1
vote
2answers
165 views
Get previous element of a different type with PHP Simple Html Dom?
Hoping this is possible with Simple Html Dom, I'm scraping a page that looks like this:
<h5>this is title 1</h5>
<img>
<img>
<img>
<h5>this is title 2</h5>
...
1
vote
1answer
246 views
Java emulation of a vt220 terminal for screen scraping
I have to do a screen scraping of a vt200 telnet connection using Java 1.6.
I have tried to cheat and use a simple telnet connection with InputStrem and OutputStream but the server is picky and, when ...
0
votes
3answers
405 views
PHP Scrape HTML Between <pre> tags
I'm having trouble with finding out how to scrape HTML content from only inside and tags with PHP5.
I want to take an example of the following document, and take the 2 (or more pre tag areas, its ...
0
votes
2answers
808 views
How can I scrape the text from a certain DIV using PHP and exlude html tags inside the DIV
I have a project I'm working on where I need to scrape the text out of a specific div tag but only the text no html tags.
Here is example of the html:
<div id="divid1" class="divclass1">
...
1
vote
1answer
786 views
Scrape data from flash only site
I know a bit of javascript, HTML, CSS, VBA and just general programming structures (functions, loops, etc.)
How would you approach this problem. A sports betting website posts numerical data (odds) ...
0
votes
5answers
821 views
Easiest way to scrape Google for URLs via my browser?
I'd like to scrape all the URLs my searches return when searching for stuff via Google. I've tried making a script, but Google did not like it, and adding cookie support and captcha was too tedious. ...