Skip to content

Fast and simple version of webfeed (A dart package for parsing RSS & Atom feed)

License

Notifications You must be signed in to change notification settings

And96/webfeed_simplified

 
 

Repository files navigation

WebFeed_Simplified

(webfeed fork)

A fast and simple version of webfeed with the following differences:

  • Faster because removed secondary rss tag
  • Fixed date formats bugged on original version
  • Updated dart and external libraries

how to use: add in pubspec.xaml

dependencies: 
   flutter: 
     sdk: flutter 
  
   webfeed: 
     git: 
       url: https://github.com/And96/webfeed_simplified 
       ref: master

How to update this repo and use in in aggregator_news

CREARE CARTELLA VUOTA
APRIRE CMD
git clone https://github.com/And96/webfeed_simplified.git
cd webfeed_simplified
--fare modifiche e/o aggiornare pub dev
git add .
git commit -m "Descrizione delle tue modifiche"
git push origin master

Original description below


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

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

About

Fast and simple version of webfeed (A dart package for parsing RSS & Atom feed)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Dart 100.0%