You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

itunesmusicsearch

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

itunesmusicsearch

A small iTunes API wrapper (made for test task)

0.0.1
pipPyPI
Maintainers
1

itunesmusicsearch PyPI version

itunesmusicsearch is made to fetch necessary information about the track using iTunes Store API. itunesmusicsearch is made for Python 3.X.

Installing

You can install it from pip:

pip install itunesmusicsearch

Or you can simply clone this project anywhere in your computer:

git clone https://github.com/fonrimss/itunesmusicsearch.git

And then enter the cloned repo and execute:

python setup.py install

Dependencies

itunesmusicsearch requires Requests installed.

Examples and information

Search for a track:

import itunesmusicsearch

track = itunesmusicsearch.search_track('Iter Impius')  # Returns a list
print(track[0].artist_name + ': ' + track[0].track_name + ' | Length: ' + str(track[0].get_track_time_minutes())) # Get info from the first result

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts