stack-overflow (a very unofficial Rust client)
A feature incomplete Stack website (as in Stack Overflow) api wrapper for fun and no profit.
Examples
Create a default client (for the StackOverflow site) and query for featured questions.
let client = new;
let results = client
.get_featured_questions
.await
.expect;
dbg!;
Create a client specifically for the Meta Stack Exchange Site and query for featured API questions.
let client = new
.stack_site
.version
.build;
let results = client
.get_featured_questions
.await
.expect;
dbg!;
TODO
- Add more API endpoints
- Add filter/sorting options to API endpoints
- Allow authentication to support endpoints and paging beyond page 25