iTunesearch is a Python wrapper for the infamous iTunes Search APIs. It features support for both search
and lookup
actions, comprehensive testing suits, and more.
pip install itunesearch
Behold, the power of iTunesearch:
>>> import itunesearch
>>> happy = itunesearch.search_track('Happy')[0]
>>> happy.get_price()
(1.29, 'USD')
>>> happy.grab_author().get_name()
'Pharrell Williams'
- Make backward compatibility changes to fully support Python 2.7+.
- Write a descriptive, up-to-date dcoumentation.
- Add support for
Book
andSoftware
store items.