Hi, why not using 
[httpclient](http://forum.nim-lang.org///nim-lang.org/docs/httpclient.html)? 
It's quite easy to use: 
    
    
    import httpclient
    
    proc main() =
      var content = getContent("http://example.com";)
      # do sth. with the content
    
    main()
    

Reply via email to