/DartFeed

A simple RSS 2.0 feed reader for Dart

Primary LanguageDartOtherNOASSERTION

DartFeed

Pub Package Build Status

Simple RSS 2.0 feed reader library.

Example Usage

Feed.fromUri(Uri.parse("http://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml"))
  .then((Feed feed){print(feed.title);});

Please refer to the example or test directory for more information on usage. The API is pretty self explanatory.