Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/machinebox/sdk-go
Official Go SDK for Machine Box
https://github.com/machinebox/sdk-go
golang machinebox machinelearning sdk-go
Last synced: 3 months ago
JSON representation
Official Go SDK for Machine Box
- Host: GitHub
- URL: https://github.com/machinebox/sdk-go
- Owner: machinebox
- License: apache-2.0
- Created: 2017-04-11T23:18:23.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-10-10T13:21:17.000Z (about 5 years ago)
- Last Synced: 2024-07-18T04:34:39.382Z (4 months ago)
- Topics: golang, machinebox, machinelearning, sdk-go
- Language: Go
- Homepage: https://machinebox.io/
- Size: 146 KB
- Stars: 145
- Watchers: 8
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Machine Box Go SDK [![GoDoc](https://godoc.org/github.com/machinebox/sdk-go?status.svg)](http://godoc.org/github.com/machinebox/sdk-go) [![Build Status](https://travis-ci.org/machinebox/sdk-go.svg?branch=master)](https://travis-ci.org/machinebox/sdk-go)
The official Machine Box Go SDK provides Go clients for each box.
## Usage
Go get the repo:
```
go get github.com/machinebox/sdk-go
```Then import the package of the box you wish to use:
```go
import "github.com/machinebox/sdk-go/facebox"
```Then create a client, providing the address of the running box.
(To get a box running locally, see the instructions at https://machinebox.io/account)
```go
faceboxClient := facebox.New("http://localhost:8080")
```