How long to beat provides information and data about games and how long it will take to finish them.
This library is a simple wrapper api to fetch data from How long to beat (search and detail). It is an awesome website and a great service, also heavily living from community data. Please check the website and support if you like what they are doing.
go get github.com/illud/howlongtobeat
or
go get github.com/illud/howlongtobeat@latest
import "github.com/illud/howlongtobeat"
result := howlongtobeat.Search("Elden Ring")
fmt.Println(result)
- Search response example:
[
{
"image":"https://howlongtobeat.com/games/68151_Elden_Ring.jpg",
"title":"Elden Ring",
"main":"52h 37m",
"extra":"98h 12m",
"completionist":"131h 17m"
}{
"image":"https://howlongtobeat.com/games/108888_Elden_Ring_GB.jpg",
"title":"Elden Ring GB",
"main":"0h 21m",
"extra":"0h 29m",
"completionist":"0h 0m"
}
]
DO WHAT THE FUCK YOU WANT