This is an automatic async implementation of the qBittorrent 4.1 web api. The api generation is based on the wiki markdown file which can be seen [here](https://github.com/qbittorrent/qBittorrent/wiki/WebUI-API-(qBittorrent-4.1)).
## Example
```rust
use anyhow::Result;
use qbittorrent_web_api::Api;
#[tokio::main]
async fn main() -> Result<()> {
let api = Api::login("http://localhost:8080", "admin", "adminadmin").await?;