|
|
7 lat temu | |
|---|---|---|
| example | 8 lat temu | |
| lib | 7 lat temu | |
| test | 7 lat temu | |
| .gitignore | 8 lat temu | |
| .travis.yml | 8 lat temu | |
| CHANGELOG.md | 8 lat temu | |
| LICENSE | 8 lat temu | |
| README.md | 8 lat temu | |
| analysis_options.yaml | 8 lat temu | |
| pubspec.yaml | 8 lat temu | |
A dart package for parsing RSS and Atom feed.
Add this line into your pubspec.yaml
webfeed: ^0.3.0
Import the package into your dart code using:
import 'package:webfeed/webfeed.dart';
To parse string into RssFeed object use:
var rssFeed = new RssFeed.parse(xmlString); // for parsing RSS feed
var atomFeed = new AtomFeed.parse(xmlString); // for parsing Atom feed
RSS
feed.title
feed.description
feed.link
feed.items
feed.image
feed.cloud
feed.categories
feed.skipDays
feed.skipHours
feed.lastBuildDate
feed.language
feed.generator
feed.copyright
feed.docs
feed.managingEditor
feed.rating
feed.webMaster
feed.ttl
RssItem item = feed.items.first;
item.title
item.description
item.link
item.categories
item.guid
item.pubDate
item.author
item.comments
item.source
item.media
Atom
feed.id
feed.title
feed.updated
feed.items
feed.links
feed.authors
feed.contributors
feed.categories
feed.generator
feed.icon
feed.logo
feed.rights
feed.subtitle
AtomItem item = feed.items.first;
item.id
item.title
item.updated
item.authors
item.links
item.categories
item.contributors
item.source
item.published
item.content
item.summary
item.rights
item.media
WebFeed is licensed under the MIT License - see the LICENSE.md file for details