The Webfeed Flutter package for Appeto SDK.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
Wito Chandra 7f82c09e26 add DateTime type for dublin core hace 6 años
.github/workflows Create dart.yml hace 6 años
example reformat code hace 8 años
lib add DateTime type for dublin core hace 6 años
test add DateTime type for dublin core hace 6 años
.gitignore simple rss client hace 8 años
.travis.yml integrate travis ci hace 8 años
CHANGELOG.md bump version hace 7 años
LICENSE Initial commit hace 8 años
README.md bump version hace 7 años
analysis_options.yaml reformat code hace 8 años
pubspec.yaml add DateTime type for dublin core hace 6 años

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.4.2

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.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