This package allows you to access the data provided by Valve's Server Query protocol.
Want to use it from Python? You can do that! Want to us it from JavaScript? You can do that too!
Rust is an accessible language that can be utilized in most any scenario, and become more accessible each day!
cargo install valve-server-query
In your Cargo.toml
file.
toml
[dependencies]
valve-server-query = "0"
```rust let client = Client::new("ip:port").expects("Failed to connect to the server.");
let info = client.info().expects("Failed to get server info."); let players = client.players().expects("Failed to get server players."); let rules = client.rules().expects("Failed to get server rules."); ```
Pull requests are welcome.
Requests for additional features are welcome: Create a GitHub Issue.
If you would like additional content, such as the abiltiy to query the Master Server Query Protocol, then feel free to contact me or create a GitHub Issue.
Feel free to create an issue if you experience any problems with this package.