1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
========
Client
========
Python
------
Gnocchi officially provides a Python client and SDK which can be installed
using *pip*::
pip install gnocchiclient
This package provides the `gnocchi` command line tool that can be used to send
requests to Gnocchi. You can read the `full documentation online`_.
Go
--
There is an open source Go implementation for the SDK, provided by the
`Gophercloud` project.
It can be installed using *go get*::
go get github.com/gophercloud/utils/gnocchi
This package provides the Go SDK only. You can read the `godoc reference`_.
.. _full documentation online: http://gnocchi.osci.io/gnocchiclient
.. _Gophercloud: https://github.com/gophercloud
.. _godoc reference: https://godoc.org/github.com/gophercloud/utils
|