Personal tools

Network.Curl

From HaskellWiki

(Difference between revisions)
Jump to: navigation, search
(Category:Web)
Current revision (16:36, 28 November 2008) (edit) (undo)
m
 
Line 18: Line 18:
* [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:Packages]]
 
[[Category:Web]]
[[Category:Web]]
 +
[[Category:Packages]]

Current revision

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

1 Trivial Use

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

2 External Examples and Tutorials