本人使用Gitea 搭建了私人仓库,并且在个站商店 上面添加了自己的仓库,但是Gitea没有提供站点地图和rss订阅相关功能,于是自己就写了脚本来做这件事,站点地图的详见根据站点生成sitemap.xml的脚本 。
本文就是处理rss订阅的脚本。
安装依赖
pip3 install -r requirement.txt
打开gen_rss.py 修改
# 需要保存的rss位置 file_path = "./rss.xml" # 自己gitea的url code_url='https://git.zeekling.cn/'
执行下面脚本即可
./gen_rss.py
添加定时
*/10 * * * * cd /root/gitea-rss && ./gen_rss.py