Difference between revisions of "Network.Curl"

From HaskellWiki
Jump to navigation Jump to search
m
(2 intermediate revisions by 2 users not shown)
Line 16: Line 16:
 
* [http://hpaste.org/8521 A small example similar to above for retrieving and processing rss in a trivial fashion using Network.Curl and Text.XML.Light]</li>
 
* [http://hpaste.org/8521 A small example similar to above for retrieving and processing rss in a trivial fashion using Network.Curl and Text.XML.Light]</li>
   
* [http://hpaste.org/8521#a1] A small example using the [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/feed feed] library, to simplify RSS parsing.
+
* [http://hpaste.org/8521#a1 A small example] using the [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/feed feed] library, to simplify RSS parsing.
   
  +
[[Category:Web]]
 
[[Category:Packages]]
 
[[Category:Packages]]

Revision as of 16:36, 28 November 2008

This page collections documentation and examples about the library Network.Curl, (docs) a curl binding for Haskell, developed at Galois, Inc.

Trivial Use

$ ghci
Prelude> :m Network.Curl
Prelude Network.Curl> let html = curlGetString "http://www.haskell.org/" []

External Examples and Tutorials