├── .github └── workflows ├── ColleXions.py ├── Dockerfile ├── LICENSE ├── README.md ├── collexions_template.xml ├── config.json └── requirements.txt /.github/workflows: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ColleXions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jl94x4/ColleXions/HEAD/ColleXions.py -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jl94x4/ColleXions/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jl94x4/ColleXions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jl94x4/ColleXions/HEAD/README.md -------------------------------------------------------------------------------- /collexions_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jl94x4/ColleXions/HEAD/collexions_template.xml -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jl94x4/ColleXions/HEAD/config.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Werkzeug==2.0.3 2 | requests 3 | plexapi 4 | schedule 5 | pyyaml 6 | psutil 7 | --------------------------------------------------------------------------------