opmlparser 0.0.3 copy "opmlparser: ^0.0.3" to clipboard
opmlparser: ^0.0.3 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
0
points
35
downloads

Publisher

verified publisherabhinavmarwaha.com

Weekly Downloads

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

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

intl, xml

More

Packages that depend on opmlparser