The Webfeed Flutter package for Appeto SDK.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Wito Chandra c545acb789 support media namespaces 8年前
example reformat code 8年前
lib support media namespaces 8年前
test support media namespaces 8年前
.gitignore simple rss client 8年前
.travis.yml integrate travis ci 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.2.3

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

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

License

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