a user-friendly Client wrapper, which automatically handles cookies and load/store cookies from/to the specified path.
```rust use asession::SessionBuilder;
async fn main() { let session: Session = SessionBuilder::new() .cookiesstoreinto("cookies.json".into()) .build().unwrap();
let res = session.post("https://www.example.com")
.form(&[("key", "value")])
.send()
.await
.unwrap();
} ```