A python script to sync liked songs in Pandora to Google Play Music All Access playlists.
After running the script you will have a "Pandora" playlist with all of the songs you have liked. There will also be playlists for each station that has liked songs. The format for these is "Pandora - STATION NAME".
# Step 1: Install lxml dependencies
# In CentOS/Fedora:
yum install libxml2-devel libxslt-devel
# or in Ubuntu/Debian:
apt-get install libxml2-dev libxslt-dev
# Step 2: Install python libraries
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
python pandora_to_google_music.py
The script will:
- Ask for your Pandora and Google Music login details
- Scrape your likes from Pandora
- Match these songs with Google Music
- Add the songs that match to Google Music playlists
Enjoy!