This framework allows interacting with Google Music API using RxSwift for iOS and macOS.
import RxGoogleMusic
let client = GMusicClient(token: /* google api token */)
/// load first 15 radio stations
_ = client.radioStations(maxResults: 15).subscribe(onNext: { stations in
print("Radio stations: \(stations.items)")
})
See ExampleApps folder for example applications for macOS and iOS.
This framework is under development and not "production ready".