opmlparser 1.0.0 copy "opmlparser: ^1.0.0" to clipboard
opmlparser: ^1.0.0 copied to clipboard

A dart package for parsing OPML. All features of the official spec is included.

example/main.dart

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

void main() async {
  var client = http.Client();

  var response = await client.get(
      Uri.parse('http://hosting.opml.org/dave/spec/subscriptionList.opml'));
  var channel = Opml.parse(response.body);
  print(channel);

  client.close();
}
3
likes
110
pub points
13%
popularity

Publisher

verified publisherabhinavmarwaha.com

A dart package for parsing OPML. All features of the official spec is included.

Repository (GitHub)
View/report issues

Documentation

API reference

License

AGPL-3.0 (LICENSE)

Dependencies

intl, xml

More

Packages that depend on opmlparser