dot4ch is a convenient wrapper library around 4chan's API.
This library can fetch and update:
While respecting 4chan's:
If-Modified-Since
headers with update requests.Thread
, Catalog
and Board
update requests.```rust
async fn main() { let mut client = Client::new();
let board = "g";
let post_id = 81743559;
let thread = Thread::new(&mut client, board, post_id).unwrap();
let post = thread.op();
println!("{}", post.image_url().unwrap());
}
```