kaggle-rs - accessing kaggle.com the rust way

Unofficial rust implementation of the kaggle-api.
Example
Download the newest version of a complete dataset
```rust
use kaggle::KaggleApiClient;
[tokio::main]
async fn main() -> Result<(), Box> {
let kaggle: KaggleApiClient = KaggleApiClient::builder().build()?;
let dataset = kaggle
.datasetdownloadall_files("unanimad/dataisbeautiful", None, None)
.await?;
kaggle::archive::unzip(dataset, ".")?;
Ok(())
}
```
Documentation
Full docs available at docs.rs
License
The Kaggle API is released under the Apache License, Version 2.0