webfeed 0.7.0 copy "webfeed: ^0.7.0" to clipboard
webfeed: ^0.7.0 copied to clipboard

webfeed is a dart package for parsing RSS and Atom feeds. Media, DublinCore, iTunes, Syndication namespaces are also supported.

WebFeed #

Build Status Pub

A dart package for parsing RSS and Atom feed.

Features #

  • ✅ RSS (0.9, 1.0, & 2.0)
  • ✅ Atom
  • ✅ Namespaces
    • ✅ Media RSS
    • ✅ Dublin Core
    • ✅ iTunes
    • ✅ Syndication

Installing #

Add this line into your pubspec.yaml

webfeed: ^0.7.0
copied to clipboard

Import the package into your dart code using:

import 'package:webfeed/webfeed.dart';
copied to clipboard

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
copied to clipboard

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
copied to clipboard

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
copied to clipboard

License #

WebFeed is licensed under the MIT License - see the LICENSE.md file for details

112
likes
120
points
720
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.14 - 2025.03.29

webfeed is a dart package for parsing RSS and Atom feeds. Media, DublinCore, iTunes, Syndication namespaces are also supported.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

intl, xml

More

Packages that depend on webfeed