├── .github └── workflows │ └── weread.yml ├── .gitignore ├── OUT_FOLDER └── weread.svg ├── README.md ├── asset ├── WechatIMG24.jpg └── WechatIMG27.jpg ├── requirements.txt └── scripts ├── utils.py └── weread.py /.github/workflows/weread.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malinkang/weread2notion/HEAD/.github/workflows/weread.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | scripts/__pycache__/ 2 | .env -------------------------------------------------------------------------------- /OUT_FOLDER/weread.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malinkang/weread2notion/HEAD/OUT_FOLDER/weread.svg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malinkang/weread2notion/HEAD/README.md -------------------------------------------------------------------------------- /asset/WechatIMG24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malinkang/weread2notion/HEAD/asset/WechatIMG24.jpg -------------------------------------------------------------------------------- /asset/WechatIMG27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malinkang/weread2notion/HEAD/asset/WechatIMG27.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | notion-client 3 | python-dotenv 4 | retrying -------------------------------------------------------------------------------- /scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malinkang/weread2notion/HEAD/scripts/utils.py -------------------------------------------------------------------------------- /scripts/weread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malinkang/weread2notion/HEAD/scripts/weread.py --------------------------------------------------------------------------------