Quit SomaFM app.
brew install sqlite3
Replace your username in the paths below:
Get all your favorite/bookmarked songs on Mac SomaFM app that have no parenthesis in the title:
sqlite3 /Users/thadk/Library/Containers/com.somafm.somafmmac/Data/Library/Application\ Support/SomaFM/SomaFM.sqlite3.db "SELECT printf('%s - %s', replace(title,'-',' '), replace(artist,'-',' ')) FROM bookmarks WHERE title NOT LIKE '%(%'"
Then use this website to convert to Spotify or YouTube: http://playlist-converter.net/#/
You may need to manually strip out (Remix)
details from the rest:
sqlite3 /Users/thadk/Library/Containers/com.somafm.somafmmac/Data/Library/Application\ Support/SomaFM/SomaFM.sqlite3.db "SELECT printf('%s - %s', replace(title,'-',' '), replace(artist,'-',' ')) FROM bookmarks WHERE title LIKE '%(%'"
Also browsable In the Firefox excellent: https://addons.mozilla.org/en-US/firefox/addon/sqlite-manager/

