Skip to content

nathaniel-daniel/reddit-rs

Repository files navigation

reddit-rs

A basic reddit client lib for Rust. This library currently allows users to fetch posts from subreddits.

Example

#[tokio::main]
async fn main() {
    let client = reddit::Client::new();
    
    /// Fetch 100 posts from the "aww" subreddit
    let subreddit = client.get_subreddit("aww", 100).await.expect("failed to get subreddit");

    dbg!(subreddit);
}

Documentation

Master: https://nathaniel-daniel.github.io/reddit-rs/reddit/

License

Licensed under either of

at your option.

Contributing

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

About

A basic Reddit client lib for rust

Topics

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages