The Webfeed Flutter package for Appeto SDK.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Wito Chandra cd9415c0b2 add dublin core пре 7 година
example reformat code пре 8 година
lib add dublin core пре 7 година
test add dublin core пре 7 година
.gitignore simple rss client пре 8 година
.travis.yml integrate travis ci пре 8 година
CHANGELOG.md bump version пре 8 година
LICENSE Initial commit пре 8 година
README.md bump version пре 8 година
analysis_options.yaml reformat code пре 8 година
pubspec.yaml bump version пре 8 година

README.md

WebFeed

Build Status Pub

A dart package for parsing RSS and Atom feed.

Features

Installing

Add this line into your pubspec.yaml

webfeed: ^0.3.0

Import the package into your dart code using:

import 'package:webfeed/webfeed.dart';

Example

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

Preview

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

License

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