Skip to content

seeeturtle/kbo

Repository files navigation

KBO

Go언어로 만들어진 비공식 KBO 경기 결과 API

설치

  1. 만약 서버까지 설치하고 싶으시면
$ go get github.com/seeeturtle/kbo/...
  1. 만약 라이브러리만 설치하고 싶으시면
$ 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)
}

API

$ curl 'https://kbo-api.herokuapp.com?year=2018&month=7&day=27'

About

비공식 KBO 경기 결과 API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages