├── .github └── workflows │ └── release.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── api.py ├── app.py ├── customprocessor.py ├── nameprocessor.py ├── plexapihandler.py ├── requirements.txt └── tests ├── app_test.py └── processor_test.py /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantebarba/autoscan-adapter/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantebarba/autoscan-adapter/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantebarba/autoscan-adapter/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantebarba/autoscan-adapter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantebarba/autoscan-adapter/HEAD/README.md -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantebarba/autoscan-adapter/HEAD/api.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantebarba/autoscan-adapter/HEAD/app.py -------------------------------------------------------------------------------- /customprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantebarba/autoscan-adapter/HEAD/customprocessor.py -------------------------------------------------------------------------------- /nameprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantebarba/autoscan-adapter/HEAD/nameprocessor.py -------------------------------------------------------------------------------- /plexapihandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantebarba/autoscan-adapter/HEAD/plexapihandler.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantebarba/autoscan-adapter/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/app_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantebarba/autoscan-adapter/HEAD/tests/app_test.py -------------------------------------------------------------------------------- /tests/processor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantebarba/autoscan-adapter/HEAD/tests/processor_test.py --------------------------------------------------------------------------------