rsreddit 0.1.3

Lightweight Reddit API wrapper
Documentation
1
2
3
4
5
6
7
8
9
10
11
extern crate rsreddit;

use rsreddit::client::Reddit;

fn main() {
    // Get Thread Tree for a thread by its permalink
    let reddit = Reddit::default().build();
    reddit.thread_by_permalink(
        "/r/rust/comments/hv78hc/show_rrust_a_tiny_unix_shell_from_c_to_rust_from/",
    );
}