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: 4 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 (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-10-10T13:21:17.000Z (over 6 years ago)
- Last Synced: 2025-05-23T02:45:29.173Z (11 months ago)
- Topics: golang, machinebox, machinelearning, sdk-go
- Language: Go
- Homepage: https://machinebox.io/
- Size: 146 KB
- Stars: 145
- Watchers: 7
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Machine Box Go SDK [](http://godoc.org/github.com/machinebox/sdk-go) [](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")
```