This repository provides a command-line interface (CLI) for interacting with Readwise's Reader API. This tool allows you to interact with the API directly from your command line, making it easy to add
and list
documents from your Reader library.
Also, you can upload
documents from your browser reading list, such as Chrome ReadingList.
Please note that future updates will include support for additional browsers.
Set up a virtual environment and then run:
pip install readwise-reader-cli
Before using the CLI, make sure to set the READER_API_TOKEN environment variable. You can obtain your API token here.
export READER_API_TOKEN={your_api_token}
The CLI provides the following commands:
Usage: python -m readercli [OPTIONS] COMMAND [ARGS]...
Interact with your Reader Library
Options:
--help Show this message and exit.
Commands:
add Add Document
lib Library breakdown
list List Documents
upload Upload Reading List File
validate Validate token
Usage: python -m readercli list [OPTIONS]
List Documents
Options:
-l, --location [new|archive|later|feed]
Document(s) location
-c, --category [article|tweet|pdf|epub|email|note|video|highlight|rss]
Document(s) category
-a, --update-after [%Y-%m-%d|%Y-%m-%dT%H:%M:%S|%Y-%m-%d %H:%M:%S]
Updated after date in ISO format. Default:
last 24hrs.
-d, --date-range TEXT View documents updated after choosen time:
today, week, month.
-L, --layout [table|list] Display documents either as a list or table.
Default: table.
-n, --num-results INTEGER The number of documents to show.
-P, --pager Use to page output.
--help Show this message and exit.
Examples:
python -m readercli list --location archive
python -m readercli list --location archive --category article
python -m readercli list --location archive --category article --update-after 2023-01-01
python -m readercli list --location archive --category article --update-after 2023-01-01 --layout list
python -m readercli list --location archive --category article --date-range week
THINGS TO NOTE:
-
RATE LIMIT - Due to Reader's API rate limit of 20 requests per minute, a larger list will take a few minutes to upload.
-
LACK OF READING LIST APIs - There is no API to pull your ReadingList from Google, but it is being looked at here.
To upload
your Chrome Reading List, you first need to download your data from your account, then follow these steps:
- Navigate to the Data & Privacy section.
- Find the "Download your data" option and click on it.
- A list of data to export will appear. Click "Deselect all" and then locate the Chrome section.
- Click "All Chrome data Included" and select ONLY "ReadingList".
- Save the downloaded
.html
file to your preferred directory and take note of the file path. - Run the
import
command.
Usage: python -m readercli upload [OPTIONS] INPUT_FILE
Upload Reading List File
Options:
--file-type [html|csv]
--help Show this message and exit.
Examples:
python -m readercli upload /path/to/ReadingList.html
python -m readercli upload --file-type csv /path/to/ReadingList.csv
Usage: python -m readercli add [OPTIONS] URL
Add Document
Options:
--help Show this message and exit.
Example:
python -m readercli add http://www.example.com
Usage: python -m readercli lib [OPTIONS]
Library breakdown
Options:
-V, --view [category|location|tags]
--help Show this message and exit.
python -m readercli lib
Category Breakdown
βββββββββββββββ³ββββββββ
β Name β Count β
β‘ββββββββββββββββββββββ©
β ποΈ highlightβ 724 β
β π‘οΈ rss β 391 β
β βοΈ email β 363 β
β π°οΈ article β 264 β
β ποΈ note β 140 β
β ποΈ pdf β 83 β
β π¦οΈ tweet β 25 β
β πΉοΈ video β 10 β
β ποΈ epub β 0 β
βββββββββββββββ΄ββββββββ
python -m readercli lib --view [location | tags]
Location Breakdown
βββββββββββββ³ββββββββ
β Name β Count β
β‘ββββββββββββββββββββ©
β ποΈ archiveβ 1124 β
β ποΈ later β 241 β
β βοΈ new β 10 β
β π₯οΈ feed β 2 β
βββββββββββββ΄ββββββββ
python -m readercli lib --view tags
Tags Breakdown
ββββββββββββββββββββββββββ³ββββββββ
β Name β Count β
β‘βββββββββββββββββββββββββββββββββ©
β python β 32 β
β documentation β 9 β
β programming β 7 β
β github β 7 β
β git β 6 β
β packages β 6 β
β design-patterns β 6 β
β mac β 1 β
ββββββββββββββββββββββββββ΄ββββββββ
Usage: python -m readercli validate [OPTIONS] TOKEN
Validate token
Options:
--help Show this message and exit.
This project is licensed under the MIT License - see the LICENSE file for details.