KO
|
EN
gitlite — search
Search
#java
#javascript
#android
#python
#react
#api
#nodejs
#typescript
#kubernetes
#cli
#kotlin
#redis
webfeed
★ 104
Open GitHub ↗
A dart package for parsing RSS & Atom feed
Download README (.md)
Explore Similar Repositories
hnsw-sharp
:
C# library for approximate nearest neighbors search using Hierarchical Navigable Small World graphs
spectral-action
:
GitHub Action wrapper for Spectral - a JSON/YAML/OpenAPI/AsyncAPI/etc linter with custom rule support.
Hunch
:
<UNMAINTAINED> Hunch provides functions like: All, First, Retry, Waterfall etc., that makes asynchronous flow control more intuitive.
tf.extra_losses
:
Large-Margin Softmax Loss, Angular Softmax Loss, Additive Margin Softmax, ArcFaceLoss And FocalLoss In Tensorflow
javascript-style-guide
:
Bản dịch tiếng Việt cho Định hướng Lối viết JavaScript của Airbnb
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
webfeed
?
Download (.md)
# WebFeed [](https://travis-ci.org/witochandra/webfeed) [](https://pub.dartlang.org/packages/webfeed) A dart package for parsing RSS and Atom feed. ### Features - [x] RSS (0.9, 1.0, & 2.0) - [x] Atom - [x] Namespaces - [x] Media RSS - [x] Dublin Core - [x] iTunes - [x] Syndication ### Installing Add this line into your `pubspec.yaml` ``` webfeed: ^0.7.0 ``` Import the package into your dart code using: ``` import 'package:webfeed/webfeed.dart'; ``` ### Example To parse string into `RssFeed` object use: ``` var rssFeed = RssFeed.parse(xmlString); // for parsing RSS feed var atomFeed = AtomFeed.parse(xmlString); // for parsing Atom feed ``` ### Preview **RSS** ``` feed.title feed.description feed.link feed.author feed.items feed.image feed.cloud feed.categories feed.skipDays feed.skipHours feed.lastBuildDate feed.language feed.generator feed.copyright feed.docs feed.managingEditor feed.rating feed.webMaster feed.ttl feed.dc RssItem item = feed.items.first; item.title item.description item.link item.categories item.guid item.pubDate item.author item.comments item.source item.media item.enclosure item.dc ``` **Atom** ``` feed.id feed.title feed.updated feed.items feed.links feed.authors feed.contributors feed.categories feed.generator feed.icon feed.logo feed.rights feed.subtitle AtomItem item = feed.items.first; item.id item.title item.updated item.authors item.links item.categories item.contributors item.source item.published item.content item.summary item.rights item.media ``` ## License WebFeed is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details