# Packages
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# README
Kakao Developers Client
Kakao Developers client library
Installation
go get -u github.com/maengsanha/kakao-developers-client
Features
-
Local
- Address Search
- Place search by keyword
- Place search by category
- Convert coordinates to administrative information
- Convert coordinates to address
- Convert coordinate system
-
Daum Search
- Web document search
- Video search
- Image search
- Blog search
- Book search
- Cafe search
-
Translation
- Text translation
- Language detection
-
Pose
- Analyze image
- Analyze video
- check video analysis results
-
Vision
- Face detection
- Product detection
- Adult image detection
- Thumbnail creation
- Multi-tag creation
- OCR
Quick start
package main
import (
"log"
"github.com/maengsanha/kakao-developers-client/local"
)
func main() {
it := local.AddressSearch("을지로").
AuthorizeWith(YOUR_REST_API_KEY).
Analyze("similar").
FormatAs("json").
Display(30).
Result(1)
for {
item, err := it.Next()
if err == local.Done {
break
}
if err != nil {
log.Panicln(err)
}
log.Println(item)
}
}
Documentation
There are API documentations for each features in the Go package site.
See official development guides for more details.
License
This library is licensed under the Apache License, Version 2.0;
see LICENSE for the full license text.