Skip to content

Latest commit

 

History

History
29 lines (26 loc) · 1.26 KB

README.md

File metadata and controls

29 lines (26 loc) · 1.26 KB

myFreeMp3

Downloads songs from MyFreeMp3.vip

Usage:

import myFreeMp3

# Create a downloader object using the the chrome selenium driver
cdl = myFreeMp3.SongDownloader('chrome')
# Downloads 'All about that Bass' from the site and saves it as 'All About That Bass.mp3' 
cdl.download('All about that Bass')

# Create a downloader object using the the firefox selenium driver
fdl = myFreeMp3.SongDownloader('firefox')
# Downloads 'All about that Bass' from the site and saves it as 'All About That Bass.mp3' 
fdl.download('All about that Bass')

# The downloader defaults to using chrome
dl = myFreeMp3.SongDownloader() # Uses chrome by default

The script will save the song in the same directory as the myFreeMp3 package, under the camel cased(with spaces) name of the song you searched for, with .mp3 extension.
This program will look for the chromedriver or geckodriver (for Firefox) in a .drivers directory in your home folder, or in your system path.

$HOME
|__.drivers
    ├── chromedriver
    └── geckodriver

You are responsible for any music downloaded in breach of copyright. This is just a tool.