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

outdated

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('http://hosting.opml.org/dave/spec/subscriptionList.opml');
  var channel = Opml.parse(response.body);
  print(channel);

  client.close();
}
3
likes
30
pub points
36%
popularity

Publisher

verified publisherabhinavmarwaha.com

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

Repository (GitHub)
View/report issues

License

AGPL-3.0 (LICENSE)

Dependencies

intl, xml

More

Packages that depend on opmlparser