Go Wrapper for Deepgram⛳
4528 단어 hackwithdg
내 제출물 개요
Deepgram API를 위한 작은 Go 래퍼🐋
설치
다음을 사용하여 이 패키지를 설치합니다.
go get github.com/agouil/deepgram-go
용법
package main
import (
"fmt"
"github.com/agouil/deepgram-go"
)
func main() {
deepgramClient := deepgram.Deepgram{
ApiKey: <DEEPGRAM_API_KEY>,
}
result, err := deepgramClient.CheckBalance()
if err != nil {
fmt.Println(err)
return
}
fmt.Println(
"Balance:", result.Balance,
"UserID:", result.UserId,
)
}
테스트
다음을 사용하여 테스트 실행:
go test -v
제출 카테고리:
엉뚱한 와일드카드
GitHub의 코드 링크
bkid00 / ApiWrapper-ForDeepgram
ApiWrapper-ForDeepgram
설치
다음을 사용하여 이 패키지를 설치합니다.go get github.com/agouil/deepgram-go
용법
package main
import (
"fmt"
"github.com/agouil/deepgram-go"
)
func main() {
deepgramClient := deepgram.Deepgram{
ApiKey: <DEEPGRAM_API_KEY>,
}
result, err := deepgramClient.CheckBalance()
if err != nil {
fmt.Println(err)
return
}
fmt.Println(
"Balance:", result.Balance,
"UserID:", result.UserId,
)
}
테스트
go get github.com/agouil/deepgram-go
Run tests with:
Reference
이 문제에 관하여(Go Wrapper for Deepgram⛳), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/bkid00/go-wrapper-for-deepgram-og텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)