Crates.io | joplin-reader |
lib.rs | joplin-reader |
version | 0.2.1 |
source | src |
created_at | 2021-04-16 20:02:22.473025 |
updated_at | 2021-05-09 10:23:59.538781 |
description | Library which reads a Joplin data folder and provides an interface to the items. |
homepage | https://github.com/Milchdealer/joplin-reader |
repository | https://github.com/Milchdealer/joplin-reader |
max_upload_size | |
id | 385438 |
size | 45,233 |
Library which provides an interface to read Joplin notes.
use joplin_reader::notebook::JoplinNotebook;
let joplin_folder = "./Joplin";
let passwords = "3336eb7a2472d9ae4a690a978fa8a46f,plaintext_password";
let notebooks = JoplinNotebook::new(joplin_folder, passwords)?;
println!("{:?}", notebooks.read_note("9a20a9e4d336de70cb6d22a58a3e673c"));