Skip to content

Latest commit

 

History

History
58 lines (58 loc) · 2.97 KB

README.md

File metadata and controls

58 lines (58 loc) · 2.97 KB

deezloader

This project has been created to download songs, albums or playlists with Spotify or Deezer link from Deezer.

  • OS Supported

    Linux Support macOS Support Windows Support
  • Installation

    pip3 install deezloader
    

Download song

Download track by Spotify link

import deezloader
downloa = deezloader.Login("YOUR DEEZER EMAIL", "YOUR DEEZER PASSWORD")
downloa.download_trackspo("Insert the Spotify link of the track to download", output="SELECT THE PATH WHERE SAVE YOUR SONGS", check=True) #Or check=False for not check if song already exist

Download track by Deezer link

import deezloader
downloa = deezloader.Login("YOUR DEEZER EMAIL", "YOUR DEEZER PASSWORD")
downloa.download_trackdee("Insert the Deezer link of the track to download", output="SELECT THE PATH WHERE SAVE YOUR SONGS", check=True) #Or check=False for not check if song already exist

Download album

Download album by Spotify link

import deezloader
downloa = deezloader.Login("YOUR DEEZER EMAIL", "YOUR DEEZER PASSWORD")
downloa.download_albumspo("Insert the Spotify link of the album to download", output="SELECT THE PATH WHERE SAVE YOUR SONGS", check=True) #Or check=False for not check if song already exist

Download album from Deezer link

import deezloader
downloa = deezloader.Login("YOUR DEEZER EMAIL", "YOUR DEEZER PASSWORD")
downloa.download_albumdee("Insert the Deezer link of the album to download", output="SELECT THE PATH WHERE SAVE YOUR SONGS", check=True) #Or check=False for not check if song already exist

Download playlist

Download playlist by Spotify link

import deezloader
downloa = deezloader.Login("YOUR DEEZER EMAIL", "YOUR DEEZER PASSWORD")
downloa.download_playlistspo("Insert the Spotify link of the playlist to download", output="SELECT THE PATH WHERE SAVE YOUR SONGS", check=True) #Or check=False for not check if song already exist

Download playlist from Deezer link

import deezloader
downloa = deezloader.Login("YOUR DEEZER EMAIL", "YOUR DEEZER PASSWORD")
downloa.download_playlistdee("Insert the Deezer link of the playlist to download", output="SELECT THE PATH WHERE SAVE YOUR SONGS", check=True) #Or check=False for not check if song already exist

Download name

Download by name

import deezloader
downloa = deezloader.Login("YOUR DEEZER EMAIL", "YOUR DEEZER PASSWORD")
downloa.download_name(artist="Eminem", song="Berzerk", output="SELECT THE PATH WHERE SAVE YOUR SONGS", check=True) #Or check=False for not check if song already exist

Disclaimer

  • I am not responsible for the usage of this program by other people.
  • I do not recommend you doing this illegally or against Deezer's terms of service.
  • This project is licensed under CC BY-NC-SA 4.0