hrobot
is an unofficial synchronous Rust client for interacting with the Hetzner Robot API
See the trait implementations for Robot
for a complete list of supported API Endpoints.
Disclaimer: the authors are not associated with Hetzner (except as customers), and the crate is in no way endorsed or supported by Hetzner Online GmbH.
A Hetzner WebService/app user is required to make use of this library.
If you already have a Hetzner account, you can create one through the Hetzner Robot web interface under Settings/Preferences.
Here's a quick example showing how to instantiate the Robot
client object
and fetching a list of all dedicated servers owned by the account identified by username
```rust
use hrobot::*;
let client = Robot::new( &std::env::var("HROBOTUSERNAME").unwrap(), &std::env::var("HROBOTPASSWORD").unwrap() );
for server in client.list_servers().unwrap() { println!("{name}: {product} in {location}", name = server.name, product = server.product, location = server.dc ); } ```
Running the above example should yield something similar to the anonymized output below
text
foobar: AX51-NVMe in FSN1-DC18
Testing relies on $HROBOT_USERNAME
and $HROBOT_PASSWORD
being defined in the environment, corresponding to a Hetzner WebService/app login.
Some of the tests which interact with the Hetzner API can be disruptive, and therefore any test which interacts with Hetzner is marked as #[ignore]
just in case cargo test
is accidentally run while the HROBOT_USERNAME
and HROBOT_PASSWORD
environment variables are available. To explicitly run these potentially disruptive tests, either use cargo test -- --ignored
to run all of them, or run the test explicitly using cargo test server::tests::list_servers -- --ignored