Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pigeonhands/snoo-rs
Work in progress async reddit client for rust
https://github.com/pigeonhands/snoo-rs
reddit reddit-api reddit-bot reddit-client rust rustlang
Last synced: about 1 month ago
JSON representation
Work in progress async reddit client for rust
- Host: GitHub
- URL: https://github.com/pigeonhands/snoo-rs
- Owner: pigeonhands
- Created: 2020-05-15T10:10:53.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-17T10:37:46.000Z (over 4 years ago)
- Last Synced: 2024-10-01T17:09:00.838Z (about 1 month ago)
- Topics: reddit, reddit-api, reddit-bot, reddit-client, rust, rustlang
- Language: Rust
- Homepage:
- Size: 114 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Snoo
[![](https://img.shields.io/crates/v/snoo?style=for-the-badge)](https://crates.io/crates/snoo)
Work in progress reddit client for rust.
See [/examples](https://github.com/pigeonhands/snoo-rs/tree/master/examples) for more.
```Rust
use snoo::Reddit;
``````Rust
let r = Reddit::new()?;let rust_subreddit = r.subreddit("rust");
let top_posts = rust_subreddit.top().await?;for p in top_posts {
println!("{}", p.info().title)
}
```