How to go about reading a web page lazily in Clojure
Posted
by Rayne
on Stack Overflow
See other posts from Stack Overflow
or by Rayne
Published on 2010-04-13T11:42:13Z
Indexed on
2010/04/13
11:42 UTC
Read the original article
Hit count: 387
I and a friend recently implemented link grabbing in my Clojure IRC bot. When it sees a link, it slurp*s the page and grabs the title from the page. The problem is that it has to slurp* the ENTIRE page just to grab the link.
How does one go about reading a page lazily until the first ?
© Stack Overflow or respective owner