{"id":32276044,"url":"https://github.com/amugofjava/podcast_search","last_synced_at":"2026-02-21T07:02:48.809Z","repository":{"id":51838680,"uuid":"169419720","full_name":"amugofjava/podcast_search","owner":"amugofjava","description":"A simple library providing programmatic access to the iTunes search API for podcasts.","archived":false,"fork":false,"pushed_at":"2025-11-04T13:48:41.000Z","size":278,"stargazers_count":47,"open_issues_count":1,"forks_count":29,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-12-13T09:51:45.680Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/amugofjava.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2019-02-06T14:35:15.000Z","updated_at":"2025-11-04T13:48:45.000Z","dependencies_parsed_at":"2024-05-08T06:38:13.516Z","dependency_job_id":"10268356-eb7b-4a13-98fd-0ea41e86cb69","html_url":"https://github.com/amugofjava/podcast_search","commit_stats":{"total_commits":64,"total_committers":4,"mean_commits":16.0,"dds":0.375,"last_synced_commit":"52d304bf385e1a3290bd0b6eb4091c7d770f25c4"},"previous_names":[],"tags_count":36,"template":false,"template_full_name":null,"purl":"pkg:github/amugofjava/podcast_search","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amugofjava%2Fpodcast_search","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amugofjava%2Fpodcast_search/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amugofjava%2Fpodcast_search/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amugofjava%2Fpodcast_search/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/amugofjava","download_url":"https://codeload.github.com/amugofjava/podcast_search/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amugofjava%2Fpodcast_search/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29675919,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T06:23:40.028Z","status":"ssl_error","status_checked_at":"2026-02-21T06:23:39.222Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-10-22T23:57:29.100Z","updated_at":"2026-02-21T07:02:48.801Z","avatar_url":"https://github.com/amugofjava.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"A library for searching for podcasts, parsing podcast RSS feeds and obtaining episodes details. Supports searching via iTunes and PodcastIndex.\n\n## Usage\n\nSearch for podcasts with 'widgets' in the title and find the top podcasts. Both\nexamples limit to 10 results and are set for the United Kingdom:\n\n```dart\nimport 'package:podcast_search/podcast_search.dart';\n\n// ignore_for_file: avoid_print\nvoid main() async {\n  var search = Search();\n\n  /// Search for podcasts with 'widgets' in the title.\n  var results =\n  await search.search('widgets', country: Country.unitedKingdom, limit: 10);\n\n  /// List the name of each podcast found.\n  for (var result in results.items) {\n    print('Found podcast: ${result.trackName}');\n  }\n\n  /// Parse the first podcast.\n  final feed = results.items[0].feedUrl;\n\n  /// It is possible to get back a podcast with a missing feed URL, so check that.\n  if (feed != null) {\n    var podcast = await Feed.loadFeed(url: feed);\n\n    /// Display episode titles.\n    for (var episode in podcast.episodes) {\n      print('Episode title: ${episode.title}');\n    }\n  }\n\n  /// Find the top 10 podcasts in the UK.\n  var charts = await search.charts(limit: 10, country: Country.unitedKingdom);\n\n  /// List the name of each podcast found.\n  for (var result in charts.items) {\n    print('Episode title: ${result.trackName}');\n  }\n}\n```\n## Supported Namespace Tags\n\n### Podcasting 2.0\n\n- Block\n- Chapters\n- Funding\n- GUID\n- Locked\n- Person\n- Transcripts (VTT, SRT \u0026 JSON formats)\n- Value\n- Alternate Enclosure\n\n### iTunes\n\n- Author\n- Episode\n- Season\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famugofjava%2Fpodcast_search","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famugofjava%2Fpodcast_search","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famugofjava%2Fpodcast_search/lists"}