Crates.io | wetransfer |
lib.rs | wetransfer |
version | 0.1.1 |
source | src |
created_at | 2019-02-06 13:15:38.398468 |
updated_at | 2019-02-07 18:20:33.047431 |
description | Unofficial WeTransfer client written in Rust. |
homepage | |
repository | https://github.com/tehAnswer/wetransfer |
max_upload_size | |
id | 113123 |
size | 38,168 |
WeTransfer is a file transfer service specialized in sending large files via email. This crate acts as an unofficial Rust client of their public api, featuring their two offered products:
First, add to your crate root the following line:
[dependencies]
wetransfer = "0.1.1"
Then, import the crate into your application by adding the following line at your project's root.
extern crate wetransfer;
In this section, all the features offered by the crate are showcased.
extern crate wetransfer;
use wetransfer::requests::*;
use std::env;
fn main() {
let app_token = env::var("APP_TOKEN").expect("Set APP_TOKEN env var.");
let client = wetransfer::sync::Client::new(app_token).unwrap();
let file_paths = vec!["/Users/sergio/Desktop/file.jpg"];
// Create a transfer.
let result_transfer = client.transfers.create("La Chuka.", &file_paths);
println!("{:?}", result_transfer);
// // Or create a board
let board = client.boards.create("Title", Some("Description")).unwrap();
println!("{:?}", board);
// Add links to the board
let links = vec![
AddLink {
url: "https://wetransfer.com".to_string(),
title: "Homepage".to_string()
},
AddLink {
url: "https://github.com/tehAnswer".to_string(),
title: "Sergio".to_string()
}
];
let result_links = client.boards.add_links(&board.id, &links);
println!("{:?}", result_links);
// Or add files.
let result_files = client.boards.add_files(&board.id, &file_paths);
println!("{:?}", result_files);
}