[racket] HTTP request problem

From: Danny Yoo (dyoo at hashcollision.org)
Date: Fri Oct 5 11:44:03 EDT 2012

On Fri, Oct 5, 2012 at 9:06 AM, Mikko Tiihonen
<mikko.tiihonen at tmtiihonen.fi> wrote:
> Thanks, Danny - I will look closer into that!

No problem!  Here's a small example of grabbing content from a certain web site:


#lang racket

(require net/url)
(define web-page-content
  (port->string
   (get-pure-port (string->url "http://racket-lang.org/"))))

Posted on the users mailing list.