├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README-zh.md ├── README.md ├── main.py ├── requirements.txt └── src ├── gusql.py ├── initialize.py ├── pixiv.py ├── rss.py └── twtter.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGuJiang/Gu-PicBot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGuJiang/Gu-PicBot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGuJiang/Gu-PicBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGuJiang/Gu-PicBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGuJiang/Gu-PicBot/HEAD/README-zh.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGuJiang/Gu-PicBot/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGuJiang/Gu-PicBot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGuJiang/Gu-PicBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/gusql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGuJiang/Gu-PicBot/HEAD/src/gusql.py -------------------------------------------------------------------------------- /src/initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGuJiang/Gu-PicBot/HEAD/src/initialize.py -------------------------------------------------------------------------------- /src/pixiv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGuJiang/Gu-PicBot/HEAD/src/pixiv.py -------------------------------------------------------------------------------- /src/rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGuJiang/Gu-PicBot/HEAD/src/rss.py -------------------------------------------------------------------------------- /src/twtter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGuJiang/Gu-PicBot/HEAD/src/twtter.py --------------------------------------------------------------------------------