https://github.com/reloni/rxgooglemusic
Google Music API client
https://github.com/reloni/rxgooglemusic
Last synced: 2 months ago
JSON representation
Google Music API client
- Host: GitHub
- URL: https://github.com/reloni/rxgooglemusic
- Owner: reloni
- License: mit
- Created: 2017-12-24T17:48:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-08-30T08:30:48.000Z (almost 7 years ago)
- Last Synced: 2025-01-10T08:08:04.586Z (over 1 year ago)
- Language: Swift
- Size: 646 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# RxGoogleMusic: an unofficial API for Google Play Music

[](https://github.com/Carthage/Carthage)
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".