Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ipfs/go-ipfs-api
The go interface to ipfs's HTTP API
https://github.com/ipfs/go-ipfs-api
Last synced: about 1 month ago
JSON representation
The go interface to ipfs's HTTP API
- Host: GitHub
- URL: https://github.com/ipfs/go-ipfs-api
- Owner: ipfs
- License: mit
- Archived: true
- Created: 2015-05-13T05:09:55.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-02-07T11:07:13.000Z (9 months ago)
- Last Synced: 2024-09-20T19:54:02.023Z (about 2 months ago)
- Language: Go
- Homepage:
- Size: 411 KB
- Stars: 455
- Watchers: 34
- Forks: 178
- Open Issues: 33
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- go-awesome - go-ipfs-api - IPFS (Open source library / The Internet)
README
## ⚠️ This package is no longer being maintained ⚠️
Please use [`kubo/client/rpc`](https://github.com/ipfs/kubo/tree/master/client/rpc) instead. In rare case the new library does not offer a feature this one does, fill issue in Kubo, or better, submit a PR that adds it to [`kubo/client/rpc`](https://github.com/ipfs/kubo/tree/master/client/rpc).
For more details about the decision, see https://github.com/ipfs/kubo/issues/9124.
# go-ipfs-api
[![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](https://protocol.ai)
[![](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](https://ipfs.io/)
[![](https://img.shields.io/badge/matrix-%23ipfs-blue.svg?style=flat-square)](https://app.element.io/#/room/#ipfs:matrix.org)
[![standard-readme compliant](https://img.shields.io/badge/standard--readme-OK-green.svg?style=flat-square)](https://github.com/RichardLitt/standard-readme)
[![GoDoc](https://godoc.org/github.com/ipfs/go-ipfs-api?status.svg)](https://godoc.org/github.com/ipfs/go-ipfs-api)
[![Build Status](https://travis-ci.org/ipfs/go-ipfs-api.svg)](https://travis-ci.org/ipfs/go-ipfs-api)![](https://camo.githubusercontent.com/651f7045071c78042fec7f5b9f015e12589af6d5/68747470733a2f2f697066732e696f2f697066732f516d514a363850464d4464417367435a76413155567a7a6e3138617356636637485676434467706a695343417365)
> The go interface to ipfs's HTTP API
## Install
```sh
go install github.com/ipfs/go-ipfs-api@latest
```This will download the source into `$GOPATH/src/github.com/ipfs/go-ipfs-api`.
## Usage
See [the godocs](https://godoc.org/github.com/ipfs/go-ipfs-api) for details on available methods. This should match the specs at [ipfs/specs (Core API)](https://github.com/ipfs/specs/blob/master/API_CORE.md); however, there are still some methods which are not accounted for. If you would like to add any of them, see the contribute section below. See also the [HTTP API](https://docs.ipfs.io/reference/http/api/).
### Example
Add a file with the contents "hello world!":
```go
package mainimport (
"fmt"
"strings"
"os"shell "github.com/ipfs/go-ipfs-api"
)func main() {
// Where your local node is running on localhost:5001
sh := shell.NewShell("localhost:5001")
cid, err := sh.Add(strings.NewReader("hello world!"))
if err != nil {
fmt.Fprintf(os.Stderr, "error: %s", err)
os.Exit(1)
}
fmt.Printf("added %s", cid)
}
```For a more complete example, please see: https://github.com/ipfs/go-ipfs-api/blob/master/tests/main.go
## Contribute
Contributions are welcome! Please check out the [issues](https://github.com/ipfs/go-ipfs-api/issues).
### Want to hack on IPFS?
[![](https://cdn.rawgit.com/jbenet/contribute-ipfs-gif/master/img/contribute.gif)](https://github.com/ipfs/community/blob/master/CONTRIBUTING.md)
## License
MIT