Crates.io | steam-profile |
lib.rs | steam-profile |
version | 0.1.6 |
source | src |
created_at | 2024-11-01 16:21:22.719216 |
updated_at | 2024-11-01 16:46:22.119386 |
description | A simple library to get basic profile statistics from steam |
homepage | |
repository | https://github.com/ElmerByte/steam-profile |
max_upload_size | |
id | 1432008 |
size | 22,866 |
library uses ureq and scraper to retrive account information from a steam page
use steam_profile::synclib::Profile;
fn main() {
let profile = Profile::get_full_profile("test");
profile.print_profile();
}