├── .gitignore ├── README.md ├── _conf_schema.json ├── data_handler.py ├── main.py ├── metadata.yaml ├── pic_handler.py ├── requirements.txt └── rss.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulter/astrbot_plugin_rss/HEAD/README.md -------------------------------------------------------------------------------- /_conf_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulter/astrbot_plugin_rss/HEAD/_conf_schema.json -------------------------------------------------------------------------------- /data_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulter/astrbot_plugin_rss/HEAD/data_handler.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulter/astrbot_plugin_rss/HEAD/main.py -------------------------------------------------------------------------------- /metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulter/astrbot_plugin_rss/HEAD/metadata.yaml -------------------------------------------------------------------------------- /pic_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulter/astrbot_plugin_rss/HEAD/pic_handler.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-dateutil 2 | pillow -------------------------------------------------------------------------------- /rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulter/astrbot_plugin_rss/HEAD/rss.py --------------------------------------------------------------------------------