Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Just wondering if anyone knows of a web-scraping library that takes advantage of Scala's succinct syntax. So far, I've found Chafe, but this seems poorly-documented and maintained. I'm wondering if anyone out there has done scraping with Scala and has advice. (I'm trying to integrate into an existing Scala framework rather than use a scraper written in, say, Python.)

share|improve this question
The scraper libs that somewhat worked for me are httpunit and htmlunit. But they're Java libraries and not explicitly Scala. – Nick Rosencrantz Feb 7 at 12:28
1  
When faced with a similar challenge I found this Scala HTML library useful. It's a bit old, but still did the trick for me. I wrapped it with an SBT build here. HTH – Steve Levine Feb 7 at 13:28

closed as not constructive by Robert Harvey Feb 7 at 20:20

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

3 Answers

up vote 2 down vote accepted

First there is a plethora of HTML scraping libs in JVM all you need to do is pimp one of them (pimp my library pattern).

The four I have used are:

  • HtmlUnit - Will emulate the browser and even run Javascript
  • Jericho - Preserves formatting and ideal if you want to edit the scraped HTML
  • NekoHtml
  • JSoup -- does not work with Scala. Might work

I have used Selenium but never for scraping. Scala has a wrapper around selenium.

I would recommend pimping an existing Java library over some half baked Scala lib.

share|improve this answer

I don't have a Scala-specific recommendation, but for the JVM in general I've had good success with:

  • JSoup You can CSS selectors to "scrape" the document. Really nice to work with.
  • Use Tagsoup to get your input HTML to XML, then use XML processors to "Scrape".

The Tagsoup route actually works quite well with Scala since Scala's built-in XML "dsl" is pretty concise (if you can forgive its perf issues and occasional API weirdness). Also, Tagsoup will handle nearly any garbage document you give it. It also has niceties like built-in understanding of many HTML entities that other SAXParsers will choke on as being undeclared.

tl;dr - JSoup + CSS selectors if possible, otherwise Tagsoup + scala XML. If slow is ok, tagsoup first, then jsoup the result.

share|improve this answer
FYI that last time I checked JSoup does not work with Scala: issues.scala-lang.org/browse/SI-3809 – Adam Gent Feb 7 at 19:58
@AdamGent Weird. I'm successfully using JSoup 1.7.1 in a project with scala 2.9.2. It's possible my use of it doesn't trigger the issue (?) – overthink Feb 7 at 20:05
Probably. We found this out the hard way and I no longer have the code. Actually sadly it was one of the many reasons we stopped using Scala :( – Adam Gent Feb 7 at 20:11
2  
Looks like the JSoup author fixed the Scala issue a couple years back: github.com/jhy/jsoup/pull/54 – overthink Feb 7 at 20:13
Damn what a reminder of how long its been. If I remember correctly I don't even think Scala 2.9 was out when it happened. – Adam Gent Feb 7 at 20:15

I'd recommend Goose: https://github.com/jiminoc/goose

It's not as general-use as you might need but if you are scraping article content from popular sites, it may work out of the box. It also provides a framework for you to work from if you want to extend their code to cover other sites.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.