https://github.com/bsdf/lastfm
https://github.com/bsdf/lastfm
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bsdf/lastfm
- Owner: bsdf
- Created: 2012-06-23T23:59:51.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2012-06-24T15:14:54.000Z (about 13 years ago)
- Last Synced: 2024-12-25T16:12:42.565Z (7 months ago)
- Language: Go
- Size: 83 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

`$ go get github.com/bsdf/lastfm`
```go
package mainimport (
"github.com/bsdf/lastfm"
"fmt"
)func main() {
lastfm := lastfm.LastFM{"Y0UR_4P1_K3Y_H3R3"}
artists, err := lastfm.GetTopArtists("bsdf")
if err != nil {
fmt.Println(err.Error())
return
}topArtist := artists[0]
fmt.Println("my favorite artist is:", topArtist.Name)
}
```