| Crates.io | iv |
| lib.rs | iv |
| version | 0.1.1 |
| created_at | 2022-07-01 02:53:17.007668+00 |
| updated_at | 2022-07-06 23:25:44.856002+00 |
| description | An imageboard viewer |
| homepage | |
| repository | https://github.com/dazmaks/iv |
| max_upload_size | |
| id | 616826 |
| size | 87,224 |
imageboard parser library
use iv::boards::{dvach::Dvach, fourchan::Fourchan, ImageBoard};
static BOARD: &str = "b";
fn main() {
// getting 2ch.hk and 4chan.org /b/ last thread
println!("{:?}", Dvach.get_last_thread(BOARD.to_owned()));
println!("{:?}", Fourchan.get_last_thread(BOARD.to_owned()));
}