steam-profile 0.1.5

A simple library to get basic profile statistics from steam
Documentation

A simple library to get basic profile statistics from steam

library uses ureq and scraper to retrive account information from a steam page

Sync Example

use steam_profile::synclib::Profile;
fn main() {
    let profile = Profile::get_full_profile("test");
    profile.print_profile();
}