# Readwise Library
## Metadata
**Topic**:: [[♯ Readwise]]
**PARA Decimal**:: "91"
## Notes
- I customize the export format a lot, see [[Personal Readwise Obsidian Export Format]] for details.
- I keep a [[Readwise Syncs|Sync History]] to check the latest highlights.
> [!important]
> To reset the library and resync from the cloud, first backup notes with local modification which have been added the attribute **Forked**.
## Elsewhere
Also available as
- [Email Subscription](https://readwise.io/@doitian)
- [Notion Space](https://doitian.notion.site/Readwise-ebffe8dd1dcf4349b77d6ddf23a3f8e2)
- [Evernote Notebook](https://www.evernote.com/pub/doitian/readwise)
## Categories
- Articles: #readwise/articles
- Books: #readwise/books
- Podcasts and Videos: #readwise/podcasts
- Tweets: #readwise/tweets
## Dataview
### Top Authors Last Year
```dataview
TABLE
length(rows) as Files
FROM "robot/Readwise Library" AND !"robot/Readwise Library/Readwise Syncs"
WHERE Highlighted AND (date(today) - date(Highlighted)).months <= 12
FLATTEN Authors as Author
GROUP BY Author
SORT length(rows) DESC
LIMIT 10
```
### Top Hosts Last Year
```dataview
TABLE
length(rows) as Files
FROM "robot/Readwise Library" AND !"robot/Readwise Library/Readwise Syncs"
WHERE Host AND Highlighted AND (date(today) - date(Highlighted)).months <= 12
GROUP BY Host
SORT length(rows) DESC
LIMIT 10
```
### Last 12 Months
```dataview
TABLE
length(rows) AS Files,
"<progress value='" + round(choice(length(rows) > 50, 50, length(rows)) * 100 / 50) + "' max='100'></progress>" AS "Files / 50"
FROM "robot/Readwise Library" AND !"robot/Readwise Library/Readwise Syncs"
WHERE Highlighted AND (date(today) - date(Highlighted)).months <= 12
GROUP BY dateformat(date(Highlighted), "[[yyyy-MM]]") as Month
SORT Month DESC
```