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.

OPML Parser #

Build Status Pub

A dart package for parsing OPML.

Installing #

Add this line into your pubspec.yaml

opmlparser: ^0.0.1

Import the package into your dart code using:

import 'package:opmlparser/opmlparser.dart';

Example #

To parse string into Opml object use:

Opml opml = Opml.parse(xmlString);

Preview #

OPML

opml.title
opml.dateCreated
opml.dateModified
opml.ownerName
opml.ownerEmail
opml.ownerId
opml.docs
opml.expansionState
opml.vertScrollState
opml.windowTop
opml.windowLeft
opml.windowBottom
opml.windowRight

OpmlItem item = opml.items.first;
item.title
item.text
item.description
item.type
item.version
item.xmlURL
item.httpURL
item.language
item.nestedItems

License #

OpmlParser is licensed under the GPLv3 License - see the LICENSE.md file for details.

3
likes
110
pub points
19%
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