PYTRip

A collection of python functions to aid in ripping songs from YouTube


License
Other
Install
pip install PYTRip==0.6

Documentation

PYTRip

A collection of python functions to aid in ripping songs from YouTube in MP3 format.

Installation

pip install PYTRip

Usage

from PYTRip import PYTRip

Download a song from a specific URL to a folder:

PYTRip.downloadToMP3(url,folder)

Download a whole playlist:

PYTRip.downloadPlaylist(url, folder)

The songs will be stored in a subdirectory named after the playlist

Download a song:

PYTRip.downloadSong(artist, song, folder)

Download the top search results for an artist:

PYTRip.downloadTop(artist, folder, number=x)

The number parameter is optional and defaults to 5

Dependencies