A crate for interacting with the steam API

Build status Crates.io Docs.rs

```bash

Running the example

APIKEY=XXXXXXXXXXXXXXXXXXX cargo run --example exampleprogram

Running the tests

API_KEY=XXXXXXXXXXXXXXXXXXX cargo test ```

Example usage

```rust let apikey = std::env::var("APIKEY")?;

let steamids = vec![ "76561198421169032", // My profile ];

for i in &steamapi::getprofileinfo(&steamids, &apikey)?.user { println!("Persona name: {}", i.personaname); println!("Player level: {}", i.player_level); } ```

API Key

Get your API Key here