A rust library for the steam web api
Find a file
2025-11-07 12:27:14 -06:00
src Fix tests, finish search_items, make some fields pub 2025-11-07 12:23:10 -06:00
tests Fix tests, finish search_items, make some fields pub 2025-11-07 12:23:10 -06:00
.gitignore Add .idea to ignore 2023-07-05 11:59:10 -05:00
Cargo.toml Fix tests, finish search_items, make some fields pub 2025-11-07 12:23:10 -06:00
CHANGELOG.md Update changelog 2025-11-07 12:27:14 -06:00
LICENSE Initial commit 2021-05-28 09:43:02 -05:00
README.md Update readme 2024-07-26 12:38:21 -05:00

rs-steam-workshop-api

A rust api library for the steam web workshop api

Basic Usage

use steam_workshop_api::Workshop;

let mut workshop = Workshop::new();
workshop.set_api_key(Some("yourapikey".to_string()));
let fileids = vec!['121221044', '1643520526'];
let details: Vec<WorkshopItem> = match workshop.get_published_file_details(&fileids) {
    Ok(details) => details,
    Err(err) => { 
        eprintln!("Failed to get file info");
    }
};