streamshare

Crates.iostreamshare
lib.rsstreamshare
version5.0.0
sourcesrc
created_at2024-10-19 20:22:30.059801
updated_at2024-10-20 19:17:46.779948
descriptionUpload to streamshare library
homepagehttps://waradu.dev
repositoryhttps://github.com/Waradu/streamshare
max_upload_size
id1415690
size10,328
Waradu (Waradu)

documentation

README

Streamshare (official)

Upload files to streamshare

Example:

Upload:

let client = StreamShare::default();

let callback = |uploaded_bytes, total_bytes| {
    println!(
        "Uploaded {}b of {}b",
        uploaded_bytes,
        total_bytes
    );
}

match client.upload(&file_path, callback).await {
    Ok((file_identifier, _deletion_token)) => {
        let download_url = format!(
            "https://streamshare.wireway.ch/download/{}",
            file_identifier
        );

        println!("File uploaded successfully");
        println!("Download URL: {}", download_url);
    }
    Err(e) => eprintln!("Error: {}", e),
}

Delete:

let client = StreamShare::default();

match client.delete(file_identifier, deletion_token).await {
    Ok(_) => println!("File deleted successfully"),
    Err(e) => eprintln!("Error deleting file: {}", e),
}

Download:

let client = StreamShare::default();

match client.download(file_identifier, path, replace).await {
    Ok(_) => println!("File downloaded successfully"),
    Err(e) => eprintln!("Error downloaded file: {}", e),
}

Check toss for a better example on how to use it.

Commit count: 11

cargo fmt