MrChuckomo / podsearch

Search for Podcasts (like in the iTunes store)
GNU General Public License v3.0
1 stars 0 forks source link
api cli cli-app podcast search web

podsearch

Search for Podcasts (in the iTunes store). Podsearch is Python package first of all. But there is also a CLI tool available.

Python Package

from podsearch import Media
from podsearch.podsearch import PodSearch

# Create your own individual search object
PodSearch('accidental tech podcast').search()
PodSearch('Tim', media=Media.PODCAST).search()

# Access directly a podcast search object
PodSearch.podcast_author('Tim').search()
PodSearch.podcast('Freakshow').search()

CLI Tool

podsearch-cli.py -t freakshow 
podsearch-cli.py -t freakshow -m podcast
podsearch-cli.py -t freakshow -m music
podsearch-cli.py -t freakshow -m ebook

Help

Usage: podsearch-cli.py [OPTIONS]

Options:
  -t, --term TEXT                 Enter your search term!  [required]
  -m, --media [movie|podcast|music|musicVideo|audiobook|shortFilm|tvShow|software|ebook|all]
                                  Media category  [default: podcast]
  --help                          Show this message and exit.