steam-profile

Crates.iosteam-profile
lib.rssteam-profile
version0.1.6
sourcesrc
created_at2024-11-01 16:21:22.719216
updated_at2024-11-01 16:46:22.119386
descriptionA simple library to get basic profile statistics from steam
homepage
repositoryhttps://github.com/ElmerByte/steam-profile
max_upload_size
id1432008
size22,866
ElmerByte (ElmerByte)

documentation

README

A simple library to get basic profile statistics from steam

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

Features

  • sync - on by default provides sync implimentation of this library
  • async - provides sync implimentation of this library
  • print - on by default provides pretty print method for Profile

Sync Example

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

cargo fmt