Go언어로 만들어진 비공식 KBO 경기 결과 API
- 만약 서버까지 설치하고 싶으시면
$ go get github.com/seeeturtle/kbo/...
- 만약 라이브러리만 설치하고 싶으시면
$ go get github.com/seeeturtle/kbo
그 다음에 의존성을 설치를 해주세요
$ dep ensure
$ kbo-api [-addr=HOST:PORT]
import (
"fmt"
"time"
"github.com/seeeturtle/kbo"
)
func main() {
parser := kbo.NewParser(
kbo.URL,
&http.Client{Timeout: 10*time.Second}, // client에 특정한 설정을 걸 수 있습니다.
)
games := parser.Parse(time.Date(2018, 5, 11, 0, 0, 0, 0, time.UTC))
fmt.Println(games)
}
$ curl 'https://kbo-api.herokuapp.com?year=2018&month=7&day=27'