5 releases (3 breaking)

0.4.0 May 1, 2024
0.3.1 Mar 25, 2024
0.3.0 Nov 15, 2023
0.2.0 Aug 16, 2022
0.1.0 Aug 8, 2022

#1291 in Web programming

Download history 1/week @ 2024-02-17 21/week @ 2024-02-24 2/week @ 2024-03-02 3/week @ 2024-03-09 1/week @ 2024-03-16 144/week @ 2024-03-23 25/week @ 2024-03-30 116/week @ 2024-04-27 8/week @ 2024-05-04

124 downloads per month

Apache-2.0

20KB
316 lines

steamr 🦀

crates.io Documentation Apache-2 licensed CI

steamr is a simple Rust library to help you to interact with Valve's Steam API. It uses the reqwest crate under the hood.

Requirements

You need a valid API key to make full use of this library. Visit https://steamcommunity.com/dev/apikey to obtain yours.

Example

use steamr::client::SteamClient;
use steamr::errors::SteamError;

fn main() -> Result<(), SteamError> {
    // Create a new client that will be used to communicate with Steam's API.
    let api_key = String::from("your-api-key");
    let steam_client = SteamClient::from(api_key);

    // Get a list of all games from the user with the provided Steam ID (given that they are publicly visible)
    let steam_id = "some-steam-id";
    let steam_lib = steam_client.get_library(&steam_id)?;

    // Print out the games that were played for more than an hour.
    steam_lib.games.iter()
        .filter(|g| g.playtime_forever > 60)
        .for_each(|g| println!("{}", g.name));

    Ok(())
}

There are some endpoints that don't require an API key. If you only need those, you can use SteamClient like so:

use steamr::client::SteamClient;
use steamr::errors::SteamError;

fn main() -> Result<(), SteamError> {
    // Create a new SteamClient without an API key
    let steam_client = SteamClient::new();

    // Get news for a game
    let app_id = "10";
    let news = steam_client.get_game_news(app_id, 5, 100)?;
    news.game_news.iter()
        .for_each(|n| println!("The article '{}' was written by '{}'", n.title, n.author));

    Ok(())
}

Dependencies

~4–16MB
~227K SLoC