Tagged Questions

Hpricot is a Ruby library intended for parsing HTML. Until the release of Nokogiri, a competing HTML and css parser, Hpricot was the defacto HTML parser for the ruby community.

learn more… | top users | synonyms

15
votes
3answers
2k views

nokogiri vs hpricot?

Which one would you choose? My important attributes are (not in order) Support & Future enhancements Community & general knowledge base (on the Internet) Comprehensive (i.e proven to parse a ...
12
votes
5answers
7k views

Installing Hpricot on Ruby 1.9.1 on Windows

I am trying to install hpricot using the command: >gem install hpricot -v 0.8.2 Building native extensions. This could take a while... ERROR: Error installing hpricot: ERROR: Failed to build ...
6
votes
4answers
3k views

Strip text from HTML document using Ruby

There are lots of examples of how to strip HTML tags from a document using Ruby, Hpricot and Nokogiri have inner_text methods that remove all HTML for you easily and quickly. What I am trying to do ...
5
votes
1answer
3k views

Where can I find Hpricot documentation?

Now that http://github.com/why/hpricot/wikis/home no longer exists.
5
votes
6answers
1k views

Looking for a recommendation of a good tutorial on best practices for a web scraping project?

I need to do a fairly extensive project involving web scraping and am considering using Hpricot or Beautiful Soup (i.e. Ruby or Python). Has anyone come across a tutorial that they thought was ...
5
votes
3answers
3k views

Nokogiri (RubyGem): Find and replace HTML tags

I have the following HTML: <html> <body> <h1>Foo</h1> <p>The quick brown fox.</p> <h1>Bar</h1> <p>Jumps over the lazy dog.</p> ...
4
votes
2answers
184 views

Failing to extract html table rows

I try to extract all five rows listed in the table above. I'm using Ruby hpricot library to extract the table rows using xpath expression. In my example, the xpath expression I use is ...
4
votes
3answers
208 views

Can any of Ruby's HTML Parsers do Javascript to see the resulting DOM?

When trying Hpricot and Nokogiri, the HTML can be fetched and parsed, but can they also execute the Javascript as well so that the content shows on the page? (shows up in the the DOM). That's ...
4
votes
3answers
194 views

Ruby for romance? How to update a script from itself

My wife enjoys it when I use my geek abilities to be "romantic" so I had an idea for a ruby script to install on her Mac that would send her quotes and little notes from me throughout the day. I ...
4
votes
1answer
546 views

Where is _why? [closed]

I have been trying to reach the sources and references for Hpricot at code.whytheluckystiff.net For a long time now. Do you know if the site, the repository or the author moved to a different ...
3
votes
2answers
219 views

How can I get Hpricot to play nice with HTML5?

I am using Hpricot to parse a theme file. I have noticed, however, that if I feed a valid HTML5 document into Hpricot(), it auto-closes HTML5 tags (like <section>), and messes with the DOCTYPE. ...
3
votes
1answer
573 views

CSS selector exclude elements, hpricot

I am trying to write a CSS selector that select everything except the script elements with hpricot, I can easily select the all the contents of the select-me div and then remove the script elements ...
3
votes
3answers
2k views

How to do a regex search in nokogiri

given: require 'rubygems' require 'nokogiri' value = Nokogiri::HTML.parse(<<-HTML_END) "<html> <body> <p id='para-1'>A</p> <div class='block' id='X1'> ...
3
votes
1answer
759 views

Parse XML with JRuby (Hpricot?) with tags like <foo.bar>

I'm trying to consume some legacy XML with elements like this in JRuby: <x-doc attr="value"> <nested> <with.dot>content</with.dot > </nested> </x-doc> ...
3
votes
3answers
969 views

Hpricot, Get all text from document

I have just started learning Ruby. Very cool language, liking it a lot. I am using the very handy Hpricot HTML parser. What I am looking to do is grab all the text from the page, excluding the HTML ...
2
votes
1answer
90 views

Disable error correction in Nokogiri

I'm working with a number of malformed HTML pages. At least, I presume they're malformed because when I parse them in Nokogiri and then execute to_html, elements don't appear correctly anymore. When I ...
2
votes
1answer
94 views

Hpricot search all the tags under one specific namespace

For example I have the following code: <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title><io:content part="title" /></title> ...
2
votes
1answer
140 views

How to parse nested ul/li tags using Hpricot

I have the following HTML structure <div id='my_categories'> <ul> <li><a href="1">Animals, Birds, & Pets</a></li> <li><a href="2">Ask ...
2
votes
2answers
88 views

How to remove a particular content inside a div using Hpricot

I have the following html structure <div id="rn_answertext"> <p>asdasdasdas</p> <p>asdasdasdas</p> <p>asdasdasdas</p> ...
2
votes
2answers
871 views

Ruby Mechanize table scraping doesn't capture entire row

I am trying to scrape a table website with mechanize. I want to scrape the second row. When I run : agent.page.search('table.ea').search('tr')[-2].search('td').map{ |n| n.text } I would expect it ...
2
votes
1answer
165 views

What is a “terminated object”, and why can't I call methods on it?

Periodically I get this exception: NotImplementedError: method `at' called on terminated object on this line of code: next if Hpricot(html).at('a') What does this error mean? How can I avoid it? ...
2
votes
3answers
507 views

Ruby Hpricot RegEx replace <BR>'s with <P>'s

Can someone please tell me how to convert this line of Javascript to Ruby using Hpricot & RegEx? // Replace all doubled-up <BR> tags with <P> tags, and remove fonts. var pattern = ...
2
votes
2answers
198 views

Can I use Hpricot to find the main article text of any/most websites?

I need a way of extracting the main text from any webpage that displays an article. Similar to the way that Readability can find the main text on any website that it's run on. I'm using Ruby on ...
2
votes
2answers
681 views

Encoding problems with hpricot

I am getting the following encoding error when trying to scrap web pages with hpricot in ruby 1.9: Encoding::CompatibilityError: incompatible character encodings: ASCII-8BIT and UTF-8 I can ...
2
votes
2answers
445 views

escape colon in Xpath search

I'm using Hpricot with selenium I have this html input element: <input id="foo:bar"/> And I'm trying to get this value with this Xpath expression: source = Hpricot(@selenium.get_html_source) ...
2
votes
2answers
857 views

How to get an element using inner text (Watir, Nokogir, Hpricot)

I have been expeirmenting with Watir, Nokogir and Hpricot. All of these use top->down approach which is my problem. i.e. they use element type to search element. I want to find out the element using ...
2
votes
2answers
1k views

How do you know when to use an XML parser and when to use ActiveResource?

I tried using ActiveResource to parse a web service that was more like a HTML document and I kept getting a 404 error. Do I need to use an XML parser for this task instead of ActiveResource? My ...
2
votes
3answers
1k views

Hpricot CSS Class search

I am working on some code that scrapes a page for two css classes on a page. I am simply using the Hpricot search method for this as so: webpage.search("body").search("div.first_class | ...
2
votes
7answers
2k views

Segmentation fault in hpricot

I'm using hpricot to read HTML. I got a segmentation fault error, I googled and some say upgrade to latest version of Ruby. I am using rails 2.3.2 and ruby 1.8.7. How to resolve this error?
2
votes
5answers
2k views

hpricot with firebug's XPath

I'm trying to extract some info from a table based website with hpricot. I get the XPath with FireBug. ...
2
votes
4answers
2k views

Installing hpricot for JRuby

I'm trying to look at cucumber for Jruby on Rails. One of the pre-requesites is webrat which has as pre-requisite hpricot. I've installed the gem with hpricot using: gem install hpricot --source ...
1
vote
2answers
40 views

Hpricot: How to extract inner text without other html subelements

I'm working on a vim rspec plugin (https://github.com/skwp/vim-rspec) - and I am parsing some html from rspec. It looks like this: doc = %{ <dl> <dt id="example_group_1">This is the ...
1
vote
3answers
58 views

Tbody tag in xpath produced by fire bug

I'm trying to extract some data from online htmls using ruby hpricot library. I use the firefox extension fire bug to get the xpath of a selected item. There's always the extra tbody tag present in ...
1
vote
1answer
81 views

How do I scrape a site, with multiple pages, and create one single html page with Ruby?

So what I would like to do is scrape this site: http://boxerbiography.blogspot.com/ and create one HTML page that I can either print or send to my Kindle. I am thinking of using Hpricot, but am not ...
1
vote
0answers
48 views

Hpricot and Rails Rendering

I finally managed to get Hpricot and Rails working together as below: parser_controller: def deck require 'hpricot' require 'open-uri' @doc = open("http://www.keo.co.za/") { |f| ...
1
vote
2answers
328 views

Using Ruby with Mechanize to log into a website

I need to scrape data from a site, but it requires my login first. I've been using hpricot to successfully scrape other sites, but I'm new to using mechanize, and I'm truly baffled by how to work it. ...
1
vote
1answer
106 views

Strange symbols in web-page's source

i've got a problem i try to parce a web page which in UTF-8 and have russian text by using Hpricot The problem is that i get russian text with some strange symbols and i get an error when i try to ...
1
vote
2answers
92 views

Hpricot: how to do conditional search using Hpricot in Ruby on Rails

I am parsing two different sites having similar HTML tags. I need to use a common parser for this. My issue is one site has a HTML format div/ol/li/span/a and other has div/ol/li/h3/a My current ...
1
vote
1answer
318 views

Convert HTML to plain text and maintain structure/formatting, with ruby

I'd like to convert html to plain text. I don't want to just strip the tags though, I'd like to intelligently retain as much formatting as possible. Inserting line breaks for <br> tags, ...
1
vote
1answer
110 views

Hpricot-style “container” method for Nokogiri? Select only certain node_types

I'm navigating a document using CSS selectors with Ruby, but I've found some css-selector bugs in Hpricot that are fixed in Nokogiri, and want to switch over. The one issue I'm having is figuring out ...
1
vote
1answer
192 views

Ruby: clean up HTML, use Hpricot or just regex?

I'm looking to do some rudimentary cleansing of HTML. Basically want to create a whitelist of tags that are allowed and reject anything else. Is Hpricot worth it in this case? Does it have a feature ...
1
vote
2answers
269 views

Hpricot XML text search

Hpricot + Ruby XML parsing and logical selection. Objective: Find all title written by author Bob. My XML file: <rss> <channel> <item> <title>Book1</title> ...
1
vote
2answers
228 views

Nokogiri equivalent of Hpricot's html method

Hpricot's html method spits out just the HTML in the document: > Hpricot('<p>a</p>').html => "<p>a</p>" By contrast, the closest I can come with Nokogiri is the ...
1
vote
1answer
137 views

Programmatically remove images and videos from html

I'm working on Ruby on Rails 2.3.8 and I've got a website in which users type posts. Each of them has a short description that is shown in the main page. That description is automatically built from ...
1
vote
3answers
227 views

Issue with unclosed img tag

data presented in HTML format and submitted to server, that does some preprocessing. It operates with "src" attribute of "img" tag. After preprocessing and saving, all the preprocessed "img" tags ...
1
vote
1answer
107 views

Some issue with Ajax on Rails

I'm using Ruby on Rails 2.3.8. I've got a vote link that when you click it executes the following action: def vote render :update do |page| page.select(".divbrian").each do |d| ...
1
vote
1answer
320 views

Rails Console - Hpricot, Nokogiri Unavailable in Rails Console?

I haven't been able to find a solution the following: After installing gems, such as hpricot or nokogiri, I'm unable to access these within the rails console. The gems show up within my gem list, and ...
1
vote
1answer
738 views

Rails Bundler on windows refuses to install hpricot (even on manual gem install get Error: no such file to load — hpricot)

Upgraded to rails 3, and using Bundler for gems, in a mixed platform development group. I am on Windows. When I run Bundle Install it completes succesfully but will not install hpricot. The hpricot ...
1
vote
2answers
357 views

XML to hash table in Ruby: Parsing list of historical inventions

I'd like to slurp the following data about historical inventions into a convenient Ruby data structure: http://yootles.com/outbox/inventions.xml Note that all the data is in the XML attributes. It ...
1
vote
1answer
153 views

How do I add text to an empty element in Hpricot?

If I have an empty tag: <tag/> How can I add text so that I end up with: <tag>Hello World!</tag> I can only seem to swap the whole tag with different content or add content ...

1 2 3