A Dart library for parsing RSS feeds.
import 'package:feedparser/feedparser.dart';
void main() {
Feed feed = parse(r'''
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>Hello World!</title>
<description>Parse RSS feeds in Dart with feedparser</description>
</channel>
</rss>
''');
print(feed);
// Output:
// title: Hello World!
// link: null
// description: Parse RSS feeds in Dart with feedparser
// language: null
// copyright: null
// pubDate: null
// lastBuildDate: null
// image: null
// items: []
}
As long as the input string provided is a valid XML string, feedparser will
attempt to parse it and return a Feed object. In strict mode feedparser instead
throws ArgumentError
s for missing mandatory fields [as defined by the
RSS 2.0 spec]. This is useful for
testing feeds to ensure they meet the spec, but impractical when dealing with
feeds not under your control.
Feed feed = parse(xmlString, strict: true);
Add this to your package's pubspec.yaml file:
dependencies:
feedparser: "^0.0.2"
You can install packages from the command line:
with pub:
$ pub get
with Flutter:
$ flutter packages get
Alternatively, your editor might support pub get
or packages get
.
Check the docs for your editor to learn more.
Now in your Dart code, you can use:
import 'package:feedparser/feedparser.dart';
Version | Uploaded | Documentation | Archive |
---|---|---|---|
0.0.2 | Feb 22, 2018 |
|
|
0.0.1 | Jan 22, 2018 |
|
|
We analyzed this package on Apr 23, 2018, and provided a score, details, and suggestions below. Analysis was completed with status completed using:
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
76 | / 100 |
Health:
Code health derived from static analysis.
[more]
|
100 | / 100 |
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
100 | / 100 |
Overall score:
Weighted score of the above.
[more]
|
88 |
Detected platforms: Flutter, web, other
No platform restriction found in primary library
package:feedparser/feedparser.dart
.
The description is too short.
Add more detail about the package, what it does and what is its target use case. Try to write at least 60 characters.
Package is pre-v1 release.
While there is nothing inherently wrong with versions of
0.*.*
, it usually means that the author is still experimenting with the general direction API.
Maintain an example.
Create a short demo in the
example/
directory to show how to use this package. Common file name patterns include:main.dart
,example.dart
or you could also usefeedparser.dart
.
Package | Constraint | Resolved | Available |
---|---|---|---|
Direct dependencies | |||
Dart SDK | >=1.21.0 <2.0.0 | ||
xml | ^3.0.0-alpha | 3.0.0 | |
Transitive dependencies | |||
collection | 1.14.9 | ||
matcher | 0.12.2 | ||
path | 1.5.1 | ||
petitparser | 1.7.6 | ||
stack_trace | 1.9.2 | ||
Dev dependencies | |||
test | ^0.12.0 |