This crate is for accessing the animebytes.tv tracker's rest API. It covers all the currently available endpoints.
```rust use animebytes_rs::Client;
let encoder = Client::new("ABKEY", "ABUSER").unwrap();
let searchresult = client.searchanime("sword art online").await.unwrap(); ```
Licensed under MIT