def podcast_5x5():
    items = []
    content = skepticsscraper.get_podcast_archive("http://www.theskepticsguide.org/podcast/5x5")

    for i in content:
        items.append({"label": i["label"], "path": i["path"], "is_playable": True})

    return items
def archive_podcast():
    items = []
    content = skepticsscraper.get_podcast_archive(PODCAST_URL)

    for i in content:
        items.append({"label": i["label"], "path": i["path"], "is_playable": True})

    return items