├── .gitignore ├── LICENSE ├── README.md ├── github_stars_to_notion └── __init__.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmpinit/github_stars_to_notion/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmpinit/github_stars_to_notion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmpinit/github_stars_to_notion/HEAD/README.md -------------------------------------------------------------------------------- /github_stars_to_notion/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmpinit/github_stars_to_notion/HEAD/github_stars_to_notion/__init__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | notion==0.0.25 2 | pyyaml==5.3.1 3 | requests==2.23.0 4 | --------------------------------------------------------------------------------