├── .github └── workflows │ ├── read_time.yml │ └── weread.yml ├── .gitignore ├── OUT_FOLDER └── fd82e35a-ebfb-42ec-9c27-28a880926902.svg ├── README.md ├── asset ├── WechatIMG24.jpg └── WechatIMG27.jpg ├── requirements.txt ├── setup.py └── weread2notionpro ├── __init__.py ├── __main__.py ├── book.py ├── config.py ├── notion_helper.py ├── read_time.py ├── utils.py ├── weread.py └── weread_api.py /.github/workflows/read_time.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malinkang/weread2notion-pro/HEAD/.github/workflows/read_time.yml -------------------------------------------------------------------------------- /.github/workflows/weread.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malinkang/weread2notion-pro/HEAD/.github/workflows/weread.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /OUT_FOLDER/fd82e35a-ebfb-42ec-9c27-28a880926902.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malinkang/weread2notion-pro/HEAD/OUT_FOLDER/fd82e35a-ebfb-42ec-9c27-28a880926902.svg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malinkang/weread2notion-pro/HEAD/README.md -------------------------------------------------------------------------------- /asset/WechatIMG24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malinkang/weread2notion-pro/HEAD/asset/WechatIMG24.jpg -------------------------------------------------------------------------------- /asset/WechatIMG27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malinkang/weread2notion-pro/HEAD/asset/WechatIMG27.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malinkang/weread2notion-pro/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malinkang/weread2notion-pro/HEAD/setup.py -------------------------------------------------------------------------------- /weread2notionpro/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weread2notionpro/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malinkang/weread2notion-pro/HEAD/weread2notionpro/__main__.py -------------------------------------------------------------------------------- /weread2notionpro/book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malinkang/weread2notion-pro/HEAD/weread2notionpro/book.py -------------------------------------------------------------------------------- /weread2notionpro/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malinkang/weread2notion-pro/HEAD/weread2notionpro/config.py -------------------------------------------------------------------------------- /weread2notionpro/notion_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malinkang/weread2notion-pro/HEAD/weread2notionpro/notion_helper.py -------------------------------------------------------------------------------- /weread2notionpro/read_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malinkang/weread2notion-pro/HEAD/weread2notionpro/read_time.py -------------------------------------------------------------------------------- /weread2notionpro/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malinkang/weread2notion-pro/HEAD/weread2notionpro/utils.py -------------------------------------------------------------------------------- /weread2notionpro/weread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malinkang/weread2notion-pro/HEAD/weread2notionpro/weread.py -------------------------------------------------------------------------------- /weread2notionpro/weread_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malinkang/weread2notion-pro/HEAD/weread2notionpro/weread_api.py --------------------------------------------------------------------------------