Skip to content

a rust lib to upload and delete files to/from streamshare

Notifications You must be signed in to change notification settings

Waradu/streamshare

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

a rust lib to upload and delete files to/from streamshare

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages