podcast_search 0.1.1 copy "podcast_search: ^0.1.1" to clipboard
podcast_search: ^0.1.1 copied to clipboard

outdated

A simple library providing programmatic access to the iTunes search API for podcasts.

A simple library providing programmatic access to the iTunes search API for podcasts.

Created from templates made available by Stagehand under a MIT license license.

Usage #

A simple usage example. Search for podcasts with widgets in the title and is available in the UK. Limit to at most 10 results:

import 'package:podcast_search/podcast_search.dart';

main() async {
  var search = new Search();

  SearchResult result = await search.search("widgets",
      country: Country.UNITED_KINGDOM,
      limit: 10);

  result.items?.forEach((podcast) {
    print("Found podcast ${podcast.trackName}");
  });
}

32
likes
0
pub points
87%
popularity

Publisher

verified publisheramugofjava.me.uk

A simple library providing programmatic access to the iTunes search API for podcasts.

Homepage

License

unknown (LICENSE)

Dependencies

http

More

Packages that depend on podcast_search