-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/twkrol/notion-clippings
- Loading branch information
Showing
1 changed file
with
30 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,31 @@ | ||
# notion-clippings | ||
Import Kindle clippings into a Notion's collection | ||
Import Kindle clippings into a Notion's database. | ||
|
||
# When would you like to use this tool | ||
In case you would like to import your Kindle highlights collection into Notion for further use. | ||
|
||
# Getting started | ||
First you have to create a database in Notion with at least the following columns (order is not important): | ||
* **Status** of type Select | ||
* **Text** of type Text | ||
* **Title** of type Title (you can rename the initial column Name) | ||
* **Authors** of type Text | ||
* **Date** of type Date | ||
* **Location** of type Text | ||
|
||
Next find path to your Kindle 'My Clippings.txt' file (you can put it into the app folder below) | ||
|
||
Then follow these steps for pipenv: | ||
1. Download/clone this python app | ||
2. Open virtualenv: <code>pipenv shell</code> | ||
3. Install referenced libraries: <code>pipenv install</code> | ||
4. Copy <code>config.ini.example</code> to <code>config.ini</code> | ||
5. Edit config.ini (your api_token and collection_page_url are mandatory) | ||
6. Run application: <code>python start.py</code> | ||
|
||
# Disclaimer | ||
This tool can, and probably will modify your Notion data! It was not extensivelly tested, so any errors may occur and you may lost your data. | ||
For the first time run it on a simple demo collection to avoid any unwanted data modifications. | ||
I'm not responsible for any damages it may cause. | ||
*You have been warned* | ||
|