Crates.io | readwise |
lib.rs | readwise |
version | 0.4.0 |
source | src |
created_at | 2021-02-07 21:23:54.413544 |
updated_at | 2022-10-13 15:07:11.316018 |
description | A rust wrapper for the Readwise API. |
homepage | https://github.com/terror/readwise |
repository | https://github.com/terror/readwise |
max_upload_size | |
id | 352079 |
size | 27,083 |
A rust wrapper for the Readwise API.
Simply add readwise to your Cargo.toml file:
readwise = "0.4.0"
Here is a small example showcasing the main functionality of the library.
use {
dotenv::dotenv,
readwise::client::Client,
std::{collections::HashMap, env},
};
fn main() {
dotenv().ok();
let client = Client::new(&env::var("ACCESS_TOKEN").unwrap()).unwrap();
// Fetch all books on page 1
for book in client.books(1).unwrap() {
println!("{}", book.title);
}
// Fetch all highlights on page 1
for highlight in client.highlights(1).unwrap() {
println!("{}", highlight.id);
}
// Create highlight(s)
let mut new_highlight = HashMap::new();
new_highlight.insert("text", "hello world!");
for highlight in client.create_highlights(vec![new_highlight]).unwrap() {
println!("{}", highlight.text);
}
// Update a highlight by ID
let mut fields = HashMap::new();
fields.insert("text", "hello, world!");
client.update_highlight(138105649, fields).unwrap();
// Delete a highlight by ID
client.delete_highlight(136887156).unwrap();
}