Name: shpider Version: 0.2.1.1 Synopsis: Web automation library in Haskell. Description: Shpider is a web automation library for Haskell. It allows you to quickly write crawlers, and for simple cases ( like following links ) even without reading the page source. . It has useful features such as turning relative links from a page into absolute links, options to authorize transactions only on a given domain, and the option to only download html documents. . It also provides a nice syntax for filling out forms. . An example: . > runShpider $ do > download "http://apage.com" > theForm : _ <- getFormsByAction "http://anotherpage.com" > sendForm $ fillOutForm theForm $ pairs $ do > "occupation" =: "unemployed Haskell programmer" > "location" =: "mother's house" . Category: Web License: BSD3 License-file: LICENSE Author: Johnny Morrice , Ozgun Ataman Maintainer: Ozgun Ataman Homepage: http://github.com/ozataman/shpider Build-type: Simple Cabal-version: >= 1.2.0 Extra-source-files: Library Build-depends: base < 5 , regex-posix , curl , tagsoup-parsec >= 0.0.8 , url>=2 , containers , tagsoup , mtl , time , bytestring , web-encodings Exposed-modules: Network.Shpider.URL Network.Shpider.Code Network.Shpider.State Network.Shpider.Options Network.Shpider.Links Network.Shpider.Forms Network.Shpider.Pairs Network.Shpider Other-modules: Network.Shpider.TextUtils