Tagged Questions
0
votes
2answers
109 views
grab elements with containing text nokogiri xpath
Still learning how to use nokogiri and so far can grab by css elements.There is a page I want to scrape http://www.bbc.co.uk/sport/football/results, i want to get all the results for the barclays ...
0
votes
2answers
55 views
Create an array from data recieved
I am trying to learn how to get data via a screen scrape and then save it to a model.So far I can grab the data.I say this as if i do
puts home_team
I get all the home teams returned
get_match.rb ...
0
votes
2answers
166 views
Check if Nokogiri HTML document is usable
I want to check if the URL that the user inputs is in fact a valid page.
I tried:
if Nokogiri::HTML(open("http://example.com"))
#DO REQUIRED TASK
end
But that immediately throws an error upon ...
0
votes
3answers
137 views
Converting Date data to proper DateTime Format before saving to DB?
I am regularly scraping and storing some dated data from a website into a rails app, but the dates given on the website are in the following format:
11/25/2012 01
Which is the date and hour.
I ...
1
vote
1answer
284 views
Periodic background jobs on Rails & Heroku
I'm developing a Rails app which gives pricing data on various products by scraping prices from 3rd party sites (similar to http://railscasts.com/episodes/190-screen-scraping-with-nokogiri).
Since ...
2
votes
2answers
170 views
How should I store scraped HTML in my webapp?
I'm a newbie to web development (and development in general) and I'm building out a rails app which scrapes data from a third party website. I'm using Nokogiri to parse for specific html elements that ...
1
vote
1answer
107 views
Read XML node.text as HTML in nokogiri
I'm parsing a Reddit RSS feed with Nokogiri for a certain subreddit.
I'm trying to capture the external URL of the post if it goes to a certain domain.
Unfortunately, even if the post created by the ...
5
votes
3answers
283 views
How do you scrape from a website which requires credentials (SSL)?
I was wondering if anyone can point me in the right direction. I want to scrape html/text contents from an SSL enabled website (https in the URL). There will be multiple branches in the filesystem ...
0
votes
1answer
208 views
Ruby gem Mechanize
Is it possible to use the render method of a controller to render the content of a Mechanize object? I tried:
def new
a = Mechanize.new
a.get('http://flickr.com/')
render :html => ...
1
vote
1answer
202 views
Nokogiri: how to find a div by id and see what text it contains?
I just started using Nokogiri this morning and I'm wondering how to perform a simple task: I just need to search a webpage for a div like this:
<div id="verify" style="display:none"> ...
3
votes
1answer
458 views
Extracting background-images from a web page / Parsing HTML+CSS
I'm building a sharing site which allows to share webpage links with Ruby on Rails.
I would like to extract some representative images for each page (as on Facebook when you share a link).
For now I ...
0
votes
3answers
284 views
how can i get the size or weight from images url?
referring to the previous question methods width and height Mechanize
I would like to know how can I get the size from web page image's with Mechanize.
I have created a method for use like helper ...
0
votes
1answer
140 views
methods width and height Mechanize
I'm using Mechanize for scraping images url then I'm looking http://mechanize.rubyforge.org/Mechanize/Page/Image.html for to know width and height images.
I write in console:
url = ...
0
votes
4answers
187 views
How to parse a particular javascript variable in an HTML page?
I have a Ruby/Rails app and am trying to screen-scrape a page to get at some data. Here's what the html looks like:
<html>
<head>
...
</head>
<body>
<h1>Blah</h1>
...
0
votes
1answer
767 views
How do I parse a table into its meaningful chunks?
I need to extract a table of data on a collection of pages. I can already traverse the pages just fine.
How do I extract the table's data? I'm using Ruby and Nokogiri, but I would assume that ...
0
votes
1answer
72 views
Screen scraped records not correctly imported
I have the following section of code from my screen scraping script (in a Rails 3.1 application):
# Add each row to a new call record
page = agent.page.search("table tbody tr").each do |row|
next ...
0
votes
0answers
180 views
How to scrape and display contents on page load and refresh this data on an interval?
I need to scrape a section of html out of a page and then render this on another page when it loads. So for example, when a user visits page X it would use Nokogiri to pull information from page Y ...
0
votes
1answer
161 views
Retryable FTP & HTTP URI reading with Typhoeus?
Having discussed some failure handling in "Does Ruby's 'open_uri' reliably close sockets after read or on fail?", I wanted to dig into this a little deeper.
I'd like to attempt to pull data from an ...
2
votes
2answers
465 views
Does Ruby's 'open_uri' reliably close sockets after read or on fail?
I have been using open_uri to pull down an ftp path as a data source for some time, but suddenly found that I'm getting nearly continual "530 Sorry, the maximum number of allowed clients (95) are ...
4
votes
3answers
490 views
how to create multi page pdf from html
We need to print thousands of invoices that are in this format -
http://example.com/orders/n
where n = thousands of orders
Going through each order and then clicking on "print" is taking us a ...
0
votes
1answer
368 views
Ruby/Rails - Cannot get size of array
I'm using the following code to scrape an eBay listing using the scrAPI gem:
I installed this by executing:
gem install scrapi
I'm also overriding its default text parser by declaring:
...
3
votes
4answers
1k views
Remove all JavaScript from an HTML page
I've tried using the Sanitize gem to clean a string which contains the HTML of a website.
It only removed the <script> tags, not the JavaScript inside the script tags.
What can I use to remove ...
1
vote
1answer
261 views
Finding links on page matching HREF pattern
I am trying to interact with a website full of images and want to interact with it by clicking on each image. Each image has a relative url (eg: /image/1000/, image/1023/, etc). The number I assume is ...
0
votes
2answers
144 views
Ruby on Rails safari reader like text extraction and boilerplating
I have a digg like web service which briefly explained has a page parser and when people submit stories, the parser returns title and summary based on hpricot and some other small extraction ...
0
votes
1answer
178 views
How can I get an RoR image scraping / parsing tool to work w/ sites that require a password for entry?
I recently contracted a dev to build an image scraping tool, similar to Facebook's, and it works really well for any sites that don't need a password for entry, but in the near future I want to expand ...
2
votes
2answers
833 views
How to know when delayed_job has done its job?
I currently have a method in my model to scrape a site and insert records to a database.
def self.scrape
#scrape
#insert into database
end
I set up a controller method to call it:
def scrape
...
1
vote
2answers
382 views
Trouble with parsing source html with Nokogiri
I'm trying to use nokogiri to select a DOM element but it seems to be returning an empty array.
I run this code:
require "open-uri"
require "nokogiri"
doc = ...
0
votes
1answer
303 views
Are there any Ruby on Rail Gems or Plug-ins that performs web queries
I need build in web query capability similar to what you can do in Excel for a project that I'm working on. Has anyone come across a gem, plug-in or application with this capability.
Clarification: ...
0
votes
2answers
963 views
POST request capture with Mechanize
I'm trying to use Mechanize to capture a POST request which is not possible via a form, because the form is inside an iframe that prevents loading directly via javascript.
The HTTP Headers are the ...
1
vote
1answer
128 views
Screen scaper that follows redirects and encodes to UTF-8
I'm looking for a gem (or a combination of gems) that can, given an URL, return the page content as UTF-8. It should also follow redirects if the URL is changed.
Does anyone know of such?
Thanks!
0
votes
6answers
2k views
How to find the href element value in “<a>” tag with ruby
My goal is to find the first result in google search resultes and collect the site link, so I built this script:
require 'hpricot'
require 'open-uri'
require 'mechanize'
query = gets.chomp
agent = ...
0
votes
2answers
131 views
Scrape a page on my own site for images to display thumbnails (Rails)
I have a rails app with posts and post comments. At the top of the post page, I want to display thumbnails (automated) of all of the image contained within the post and post comments. As users add ...
2
votes
3answers
651 views
how to run multiple nokogiri screen scrape threads at once
I have a website that requires using Nokogiri on many different websites to extract data. This process is ran as a background job using the delayed_job gem. However it takes around 3-4 seconds per ...
2
votes
3answers
2k views
How to scrape pricing data from kayak.com?
It seems they have done away with their API. They have a much less powerful tool called the Search Gateway. How would I go about scraping airfare price data using this? Is it even possible? I ...
3
votes
2answers
2k views
Rails what is the best gem to scrape websites? [closed]
What is the best gem to (screen) scrape websites that is password protected?
4
votes
3answers
1k views
Cannot sign in using form with Mechanize
I am trying to submit a form with mechanize. But nothing happens on submit. I just get the login page again.
The form:
http://affilate.mikkelsenmedia.dk/partnersystem/mylogins.php
require ...
0
votes
4answers
190 views
How should I schedule many Google Search scrapes over the course of a day?
Currently, my Nokogiri script iterates through Google's SERPs until it finds the position of the target website. It does this for each keyword for each website that each user specifies (users are ...
0
votes
2answers
469 views
Rake task for scraping with rails
I'm starting to write scrapers to get data from different websites. I built the first scraper in a rake file and am now starting to write a second rake file to get data from a second site. For now, I ...
3
votes
2answers
591 views
Playing with Scrapi in Rails 3.. getting Segmentation Fault error / Abort Trap
What I've done so far..
sudo gem install scrapi
sudo gem install tidy
This didn't work because it didn't have the libtidy.dylib
So I did this :
sudo port install tidy
sudo cp libtidy.dylib ...
1
vote
1answer
241 views
How to fail gracefully and get notified if screen scraping fails in ruby on rails
I am working on a Rails 3 project that relies heavily on screen scraping to collect data mainly using Nokogiri. I'm aggregating essentially all the same data but I'm grabbing it from many difference ...
0
votes
1answer
132 views
Prevent images from downloading with ScrAPI
I need to scrape some websites, and would like to avoid downloading images from the pages I am scraping - I only need the text. I am hoping this will speed up the process. Any ideas on how to manage ...
2
votes
2answers
686 views
How to open URLs in rails?
I'm trying to read in the html of a certain website.
Trying @something = open("http://www.google.com/") fails with the following error:
Errno::ENOENT in testController#show
No such file or ...
1
vote
3answers
1k views
Get Mechanize to handle cookies from an arbitrary POST (to log into a website programmatically)
I want to log into https://www.t-mobile.com/ programmatically. My first idea was to use Mechanize to submit the login form:
However, it turns out that this isn't even a real form. Instead, when you ...
3
votes
1answer
1k views
Mechanize not recognizing anchor tags via CSS selector methods
(Hope this isn't a breach of etiquette: I posted this on RailsForum, but I haven't been getting much response from there recently.)
Has anyone else had problems with Mechanize not recognizing anchor ...
0
votes
3answers
2k views
Scraping hidden HTML (when visible = false) using Hpricot (Ruby on Rails)
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 such as ...
0
votes
2answers
1k views
Html / Script Scraping Google Map using Hpricot (Ruby On Rails)
I am having a problem Scraping Code i require to extract information for a Web MashUp i'm creating.
Basically, I am trying to Scrap Code from:
...
0
votes
1answer
2k views
HTML Scraping with Hpricot (Using Ruby on Rails)
I have read a large deal of tutorials to help out and under Hpricot, the problem that i am finding out it is not scraping all the Html so to speak. I'll elaborate:
The website i am attempting to ...

