dart_pod 0.0.2 copy "dart_pod: ^0.0.2" to clipboard
dart_pod: ^0.0.2 copied to clipboard

outdated

A dart package for accessing podcasts from RSS feeds.

A podcasts library for Dart #

Build Status

Introduction #

dart_pod makes it easy to get information for a podcast from its feed URL. With just a single URL, dart_pod gives you access to:

  • A list of episodes with details and stream urls
  • Details about the show and its creators

all wrapped up in a drop-dead simple API for use in your Flutter or web projects.

Example #

See example/example.dart

import 'package:dart_pod/dart_pod.dart';

void main() async {
    var feed_url = "https://rss.art19.com/not-another-d-and-d-podcast"
    var naddpod = await Show.initFromURL(feed_url);

    List<Episode> episodes = naddpod.episodes;
    for (Episode e in episodes) {
        print("Episode: ${e.title} \n
               Description: ${e.description} \n
               Released: ${e.pubDate} \n
               Stream link: ${e.url} \n");
    }
}

Coming Soon #

  • iTunes integration
0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

A dart package for accessing podcasts from RSS feeds.

Homepage

License

unknown (LICENSE)

Dependencies

http, xml

More

Packages that depend on dart_pod