Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/woile/kindle-notes-parser
GUI and command line to separate automatically the kindle clippings
https://github.com/woile/kindle-notes-parser
gui kindle rust
Last synced: 3 months ago
JSON representation
GUI and command line to separate automatically the kindle clippings
- Host: GitHub
- URL: https://github.com/woile/kindle-notes-parser
- Owner: woile
- License: gpl-3.0
- Created: 2021-11-07T11:04:53.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-08T15:10:24.000Z (11 months ago)
- Last Synced: 2024-10-15T04:28:00.034Z (3 months ago)
- Topics: gui, kindle, rust
- Language: Rust
- Homepage:
- Size: 103 KB
- Stars: 13
- Watchers: 4
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Kindle notes parser
Take your kindle notes in txt format and output a file per book.
Ideal for second brains or walled gardens.
![Screenshot of the software](docs/images/image.png)
## Why this?
I usually take notes in my kindle but I don't end up doing anything with them.
As I'm learning rust I wanted to practice on a simple need (language and a bit of UI).
My workflow is like this now:
1. Read a book and add highlights
1. **Cut** the notes from the kindle and paste them in the Downloads folder
1. Use this software to split the books and remove empty or repeated lines.
1. Copy to my [obsidian](https://obsidian.md/) folder
1. Clean and create [flashcards](https://github.com/st3v3nmw/obsidian-spaced-repetition/wiki/Decks)## Usage
### CLI
```bash
cargo run -p kindle-notes-cli
```### GUI
```bash
cargo run -p kindle-notes-gui
```## Design
We are using cargo workspaces. There are 3 workspaces:
- `kindle-notes-core`: contains the main logic
- `kindle-notes-cli`: contains the cli for the terminal app
- `kindle-notes-gui`: contains the gui for the desktop environment```mermaid
graph TD;
core --> cli
core --> gui
```## Resources
- [cli project at rust book](https://doc.rust-lang.org/book/ch12-00-an-io-project.html)
- Droid GUI usage example: [druid-7guis-flight](https://github.com/MrGibus/Druid-7guis/blob/main/src/flights.rs)
- Open / save example: [druid/examples/open_save](https://github.com/linebender/druid/blob/master/druid/examples/open_save.rs)