├── .github └── workflows │ └── python-app.yml ├── .gitignore ├── README.md ├── feedtool.py ├── main.py └── requirements.txt /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Key033/RSS2Notion/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Key033/RSS2Notion/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Key033/RSS2Notion/HEAD/README.md -------------------------------------------------------------------------------- /feedtool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Key033/RSS2Notion/HEAD/feedtool.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Key033/RSS2Notion/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | feedparser 2 | requests 3 | python-dateutil 4 | --------------------------------------------------------------------------------