Let's find some podcasts!
Project description
Podcast searcher
Search any podcast in iTunes library
podsearch
finds podcasts via iTunes Search API.
Search parameters:
- query - search string (name, author etc)
- country - ISO alpha-2 country code (us, de, fr etc), default: us
- limit - maximum number or search results, default: 5
Returned attributes for each podcast:
- id - iTunes ID (e.g.,
979020229
) - name - podcast name (
Talk Python To Me
) - author - author name (
Michael Kennedy (@mkennedy)
) - url - Apple Podcasts URL (
https://podcasts.apple.com/us/podcast/id979020229
) - feed - podcast RSS URL (
https://talkpython.fm/episodes/rss
) - category - main category (
Technology
) - image - 600x600px image URL (
https://is4-ssl.mzstatic.com/image/.../600x600bb.jpg
) - country - ISO alpha-3 country code (
USA
) - episode_count - episode count this year (
26
)
Installation
pip install podsearch
Usage
Search podcasts by query:
>>> import podsearch
>>> podcasts = podsearch.search("python", country="us", limit=10)
>>> podcasts[0].name
'Talk Python To Me'
>>> podcasts[0].author
'Michael Kennedy (@mkennedy)'
>>> podcasts[0].url
'https://podcasts.apple.com/us/podcast/id979020229'
Retrieve podcast by iTunes ID:
>>> import podsearch
>>> podcast = podsearch.get(979020229)
>>> podcast.name
'Talk Python To Me'
Development setup
$ python3 -m venv env
$ . env/bin/activate
$ make deps
$ tox
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Make sure to add or update tests as appropriate.
Use Black for code formatting and Conventional Commits for commit messages.
Changelog
License
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
podsearch-0.3.1.tar.gz
(8.0 kB
view details)
Built Distribution
File details
Details for the file podsearch-0.3.1.tar.gz
.
File metadata
- Download URL: podsearch-0.3.1.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.25.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 808d061c94116b28517af8140e7af324049890318a27df6892cfc832f78df420 |
|
MD5 | bbcca1063123a663905842373ad70e3c |
|
BLAKE2b-256 | 51a7b0fea6fbaff1fa5e99fd13051c16d8c2bc4accf527f1d4ac0b011c2dcb90 |
File details
Details for the file podsearch-0.3.1-py3-none-any.whl
.
File metadata
- Download URL: podsearch-0.3.1-py3-none-any.whl
- Upload date:
- Size: 5.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.25.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e80ad2194020038183463fd4a065cf78aa5cbc155e0064f5cdcb00f203994fa4 |
|
MD5 | f3ad7fafc0ff3ab1981e493d18be274e |
|
BLAKE2b-256 | c1faaaa0b89af4d62e9de4605df8e4e2e87c6afaa440f1a7535594079071c594 |