├── Dockerfile ├── README.md ├── blacklist_actor.conf ├── blacklist_collection.conf ├── collectarr.conf.example ├── collectarr.py ├── folders.sh └── requirements.txt /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiffSphere/Collectarr/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiffSphere/Collectarr/HEAD/README.md -------------------------------------------------------------------------------- /blacklist_actor.conf: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /blacklist_collection.conf: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /collectarr.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiffSphere/Collectarr/HEAD/collectarr.conf.example -------------------------------------------------------------------------------- /collectarr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiffSphere/Collectarr/HEAD/collectarr.py -------------------------------------------------------------------------------- /folders.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiffSphere/Collectarr/HEAD/folders.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | configparser 3 | --------------------------------------------------------------------------------