abeln
abeln

Reputation: 3759

Web scraping with Scheme

Is there a good library/package to do web scraping using Scheme (preferably Racket)?

e.g. a Scheme equivalent of mechanize?

Upvotes: 8

Views: 2328

Answers (1)

Ryan Culpepper
Ryan Culpepper

Reputation: 10643

I've used a combination of the Racket net/url library, the html-parsing package, and SXML (especially sxpath, for XPath queries). Actually, I wrote some wrappers around net/url that make it slightly easier to use, IMO.

When I've needed to handle cookies, I've called out to the curl command instead of using net/url.

Upvotes: 8

Related Questions