A Rust API client for Avanza. Inspired by fhqvst/avanza
```rust use avanza_rs::client:{Client, Credentials};
// Your credentials, preferable from .env. let username = "username"; let password = "password"; let totpsecret = "totpsecret";
// Construct Credentials instance. let credentials = super::client::Credentials { username: String::from(username), password: String::from(password), totpsecret: String::from(totpsecret) };
// Run authenticate. let client = super::client::Client::authenticate(&credentials).await?;
// Get a list of accounts. let accounts = client.list_accounts().await?;
// Get a specific account by id. let account = client.get_acccount("1234567").await?;
// Construct StockOrder instance. let stockorder = StockOrder { orderbookid: String::from("5247"), account_id: account.id.clone(), price: 215.0, volume: 10, side: Side::BUY, };
// Execute a StockOrder let result = client.executestockorder(&stock_order).await?;
```
cargo install totp
.totp <TOTP_SECERT>
and enter the 6 digit code on Avanza.<TOTP_SECERT>
to .env