github.com/pachyderm/pachyderm@v1.13.4/doc/docs/1.10.x/reference/clients.md (about) 1 # Pachyderm language clients 2 3 ## Go Client 4 5 The Go client is officially supported by the Pachyderm team. It implements almost all of the functionality that is provided with the `pachctl` CLI tool, and, thus, you can easily integrated operations like `put file` into your applications. 6 7 For more info, check out the [godocs](https://godoc.org/github.com/pachyderm/pachyderm/src/client). 8 9 **Note** - A compatible version of `grpc` is needed when using the Go client. You can deduce the compatible version from our [vendor.json](https://github.com/pachyderm/pachyderm/blob/master/src/server/vendor/vendor.json) file, where you will see something like: 10 11 ``` 12 { 13 "checksumSHA1": "mEyChIkG797MtkrJQXW8X/qZ0l0=", 14 "path": "google.golang.org/grpc", 15 "revision": "21f8ed309495401e6fd79b3a9fd549582aed1b4c", 16 "revisionTime": "2017-01-27T15:26:01Z" 17 }, 18 ``` 19 20 You can then get this version via: 21 22 ``` 23 go get google.golang.org/grpc 24 cd $GOPATH/src/google.golang.org/grpc 25 git checkout 21f8ed309495401e6fd79b3a9fd549582aed1b4c 26 ``` 27 28 ## Python Client 29 30 The Python client is officially supported by the Pachyderm team. It implements almost all of the functionality that is provided with the `pachctl` CLI tool, and, thus, you can easily integrated operations like `put file` into your applications. 31 32 For more info, check out [the repo](http://github.com/pachyderm/python-pachyderm). 33 34 ## Scala Client 35 36 Our users are currently working on a Scala client for Pachyderm. Please contact us if you are interested in helping with this or testing it out. 37 38 ## Other languages 39 40 Pachyderm uses a simple [protocol buffer API](https://github.com/pachyderm/pachyderm/blob/master/src/client/pfs/pfs.proto). Protobufs support [a bunch of other languages](https://developers.google.com/protocol-buffers/), any of which can be used to programmatically use Pachyderm. We haven’t built clients for them yet, but it’s not too hard. It’s an easy way to contribute to Pachyderm if you’re looking to get involved.