| Crates.io | ipfsapi |
| lib.rs | ipfsapi |
| version | 0.4.0 |
| created_at | 2017-10-06 20:32:49.521164+00 |
| updated_at | 2022-10-01 01:01:55.151805+00 |
| description | Crate for interfacing with the IPFS api |
| homepage | |
| repository | https://github.com/gkbrk/rust-ipfs-api |
| max_upload_size | |
| id | 34600 |
| size | 36,508 |
A client library for the IPFS API.
This library allows you to use the local IPFS daemon from Rust.
[dependencies]
ipfsapi = "0.4"
Here's an example that gets the contents of a file from IPFS and displays it.
let api = IpfsApi::new("127.0.0.1", 5001);
let bytes = api.cat("QmWATWQ7fVPP2EFGu71UkfnqhYXDYH566qy47CnJDgvs8u").unwrap();
let data = String::from_utf8(bytes.collect()).unwrap();
println!("{}", data);
The code gets the content of the IPFS hash and displays "Hello World".
let api = IpfsApi::new("127.0.0.1", 5001);
let messages = api.pubsub_subscribe("chat").unwrap();
for message in messages {
println!("{:?}", message);
}