dart_rss 3.0.3 copy "dart_rss: ^3.0.3" to clipboard
dart_rss: ^3.0.3 copied to clipboard

Dart parser for RSS1.0, RSS2.0, Atom feeds.

example/main.dart

import 'package:http/http.dart' as http;
import 'package:dart_rss/dart_rss.dart';

void main() {
  final client = http.Client();

  // RSS feed
  client.get(Uri.parse('https://developer.apple.com/news/releases/rss/releases.rss')).then((response) {
    return response.body;
  }).then((bodyString) {
    final channel = RssFeed.parse(bodyString);
    return channel;
  });

  // Atom feed
  client.get(Uri.parse('https://www.theverge.com/rss/index.xml')).then((response) {
    return response.body;
  }).then((bodyString) {
    final feed = AtomFeed.parse(bodyString);
    return feed;
  });
}
43
likes
110
pub points
89%
popularity

Publisher

verified publisherflutterbountyhunters.com

Dart parser for RSS1.0, RSS2.0, Atom feeds.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

http, intl, xml

More

Packages that depend on dart_rss