CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.
| TestsTested | ✗ | 
| LangLanguage | SwiftSwift | 
| License | BSD | 
| ReleasedLast Release | Sep 2016 | 
| SPMSupports SPM | ✗ | 
Maintained by Boris Bügling.
A library for retrieving iTunes Music Store information.
You can search for albums or tracks and retrieve some model objects:
Melody().searchTracks("lucky") { (tracks, _) in
    if let track = tracks?.first {
        print("\(track.name): \(track.appleMusicUrl)")
    }
}The appleMusicUrl will open directly in Music.app 
The tests require Conche, install it via Homebrew:
$ brew install --HEAD kylef/formulae/conche
and run the tests:
$ make test