WebFeed
A dart package for parsing RSS and Atom feed.
Features
x
RSS (0.9, 1.0, & 2.0)x
Atomx
Namespacesx
Media RSSx
Dublin Corex
iTunesx
Syndication
Installing
Add this line into your pubspec.yaml
webfeed: ^0.6.0
Import the package into your dart code using:
import 'package:webfeed/webfeed.dart';
Example
To parse string into RssFeed
object use:
var rssFeed = RssFeed.parse(xmlString); // for parsing RSS feed
var atomFeed = AtomFeed.parse(xmlString); // for parsing Atom feed
Preview
RSS
feed.title
feed.description
feed.link
feed.author
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
feed.dc
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
item.enclosure
item.dc
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
License
WebFeed is licensed under the MIT License - see the LICENSE.md file for details
Libraries
- atom_category
- atom_feed
- atom_generator
- atom_item
- atom_link
- atom_person
- atom_source
- category
- community
- content
- copyright
- credit
- datetime
- description
- dublin_core
- embed
- group
- hash
- itunes
- itunes_category
- itunes_episode_type
- itunes_image
- itunes_owner
- itunes_type
- license
- media
- param
- peer_link
- player
- price
- rating
- restriction
- rights
- rss_category
- rss_cloud
- rss_content
- rss_enclosure
- rss_feed
- rss_image
- rss_item
- rss_source
- scene
- star_rating
- statistics
- status
- text
- thumbnail
- title
- webfeed
- xml