- An openbd client for Go.
$ go get -u github.com/osamingo/openbd
package main
import (
"fmt"
"github.com/osamingo/openbd"
)
func main() {
cli, err := openbd.NewClientV1("https://api.openbd.jp", nil)
if err != nil {
panic(err)
}
isbn := "9784780802047"
m, err := cli.Get(isbn)
if err != nil {
panic(err)
}
fmt.Println(m[isbn].Title())
}
Released under the MIT License.