feed-0.3.8: Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds.

Stabilityprovisional
MaintainerSigbjorn Finne <sof@galois.com>
Safe HaskellSafe-Infered

Text.Feed.Import

Description

Description: Convert from XML to Feeds.

Synopsis

Documentation

parseFeedFromFile :: FilePath -> IO Feed

'parseFeedFromFile fp' reads in the contents of the file at fp; the assumed encoding is UTF-8.

parseFeedString :: String -> Maybe Feed

'parseFeedString str' tries to parse the string str as one of the feed formats. First as Atom, then RSS2 before giving RSS1 a try. Nothing is, rather unhelpfully, returned as an indication of error.

readRSS2 :: Element -> Maybe Feed

'readRSS2 elt' tries to derive an RSS2.x, RSS-0.9x feed document from the XML element e.

readRSS1 :: Element -> Maybe Feed

'readRSS1 elt' tries to derive an RSS1.0 feed document from the XML element e.

readAtom :: Element -> Maybe Feed

'readAtom elt' tries to derive an Atom feed document from the XML element e.