lrclibgo is a Go client to access the LyricFind API.
IDK, it would be really nice of you to contribute, check the poorly written CONTRIBUTING.md for more info.
- Search
- Get song
- Lyrics
- Lyrics timing
- Publish lyrics
package main
import (
"encoding/json"
"fmt"
"github.com/mbaraa/lrclibgo"
)
func main() {
client := lrclibgo.NewClient()
results, err := client.Search.Get(lrclibgo.SearchParams{
Query: "lana del rey jealous girl",
Limit: 5,
})
if err != nil {
panic(err)
}
for _, result := range results {
jsonn, _ := json.MarshalIndent(result, "", "\t")
fmt.Println("search result", string(jsonn))
}
}
Give a ⭐️ if this project helped you!
Made with 🧉 by Baraa Al-Masri