download

High-level file download based on URLs

https://github.com/psibi/download

Version on this page:0.3.2.4
LTS Haskell 22.9:0.3.2.7
Stackage Nightly 2024-04-19:0.3.2.7
Latest on Hackage:0.3.2.7

See all snapshots download appears in

BSD-3-Clause licensed by Don Stewart
This version can be pinned in stack with:download-0.3.2.4@sha256:8cfd1dae4168b13344af4f9278608136f38649a98f275437d56582fe184bac9d,2636

Module documentation for 0.3.2.4

download

Build Status

Download web content as strict bytestring, strings, HTML tags, XML, RSS or Atom feeds or JSON, via HTTP, FTP or file protocols, using a URL interface.

Using the library:

Importing the library:

import Network.Download

Loading a webpage as a ByteString:

doc  <- openURI "http://google.com"

Loading from a file:

doc  <- openURI "file:///tmp/A.hs"

Loading a HTML page as a list of tags:

tags <- openAsTags "http://google.com"

Loading a HTML page as XML:

tags <- openAsXML "http://google.com"

Loading an RSS or Atom feed:

feed <- openAsFeed "http://google.com"

These data types can the be processed further with the XML, Feed and TagSoup libraries.

Changes

0.3.2.4

  • Fix C code warnings
  • Cleanup in Download.hsc file

0.3.2.3

  • Fix hackage page rendering

0.3.2.2

  • Basic test suite added.