├── .gitignore ├── LICENSE ├── README-en.md ├── README.md ├── README.rss.md ├── autoban.py ├── check_config.py ├── common.py ├── config.py.en.example ├── config.py.example ├── filter.py ├── gen_stats.py ├── gzapi.py ├── remove_unregistered.py ├── reseed.py ├── rss.py ├── show_banned.sh ├── show_new_torrent.sh └── torrent_filter.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfishpear/fishrss/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfishpear/fishrss/HEAD/LICENSE -------------------------------------------------------------------------------- /README-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfishpear/fishrss/HEAD/README-en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfishpear/fishrss/HEAD/README.md -------------------------------------------------------------------------------- /README.rss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfishpear/fishrss/HEAD/README.rss.md -------------------------------------------------------------------------------- /autoban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfishpear/fishrss/HEAD/autoban.py -------------------------------------------------------------------------------- /check_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfishpear/fishrss/HEAD/check_config.py -------------------------------------------------------------------------------- /common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfishpear/fishrss/HEAD/common.py -------------------------------------------------------------------------------- /config.py.en.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfishpear/fishrss/HEAD/config.py.en.example -------------------------------------------------------------------------------- /config.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfishpear/fishrss/HEAD/config.py.example -------------------------------------------------------------------------------- /filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfishpear/fishrss/HEAD/filter.py -------------------------------------------------------------------------------- /gen_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfishpear/fishrss/HEAD/gen_stats.py -------------------------------------------------------------------------------- /gzapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfishpear/fishrss/HEAD/gzapi.py -------------------------------------------------------------------------------- /remove_unregistered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfishpear/fishrss/HEAD/remove_unregistered.py -------------------------------------------------------------------------------- /reseed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfishpear/fishrss/HEAD/reseed.py -------------------------------------------------------------------------------- /rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfishpear/fishrss/HEAD/rss.py -------------------------------------------------------------------------------- /show_banned.sh: -------------------------------------------------------------------------------- 1 | cat filter.log|grep "new user banned" -A 3 2 | -------------------------------------------------------------------------------- /show_new_torrent.sh: -------------------------------------------------------------------------------- 1 | cat filter.log|grep "new torrent" -A 5|tail -n 100 2 | -------------------------------------------------------------------------------- /torrent_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfishpear/fishrss/HEAD/torrent_filter.py --------------------------------------------------------------------------------