├── .gitattributes ├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── README.md └── plugins ├── findFileErrors ├── .gitignore ├── LICENSE ├── findFileErrors.yml └── main.py ├── performerBodyCalculator ├── LICENSE ├── README.md ├── body_tags.py ├── example_config.py ├── performer_body_calculator.py ├── performer_body_calculator.yml └── performer_calculator.py ├── phashDuplicateTagger ├── LICENSE ├── README.md ├── config_example.py ├── phashDuplicateTagger.py ├── phashDuplicateTagger.yml └── requirements.txt └── tagGraph ├── README.md ├── graph ├── config.js ├── index.html ├── parse.js └── vis.min.js └── tagGraph.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/README.md -------------------------------------------------------------------------------- /plugins/findFileErrors/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt -------------------------------------------------------------------------------- /plugins/findFileErrors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/plugins/findFileErrors/LICENSE -------------------------------------------------------------------------------- /plugins/findFileErrors/findFileErrors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/plugins/findFileErrors/findFileErrors.yml -------------------------------------------------------------------------------- /plugins/findFileErrors/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/plugins/findFileErrors/main.py -------------------------------------------------------------------------------- /plugins/performerBodyCalculator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/plugins/performerBodyCalculator/LICENSE -------------------------------------------------------------------------------- /plugins/performerBodyCalculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/plugins/performerBodyCalculator/README.md -------------------------------------------------------------------------------- /plugins/performerBodyCalculator/body_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/plugins/performerBodyCalculator/body_tags.py -------------------------------------------------------------------------------- /plugins/performerBodyCalculator/example_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/plugins/performerBodyCalculator/example_config.py -------------------------------------------------------------------------------- /plugins/performerBodyCalculator/performer_body_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/plugins/performerBodyCalculator/performer_body_calculator.py -------------------------------------------------------------------------------- /plugins/performerBodyCalculator/performer_body_calculator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/plugins/performerBodyCalculator/performer_body_calculator.yml -------------------------------------------------------------------------------- /plugins/performerBodyCalculator/performer_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/plugins/performerBodyCalculator/performer_calculator.py -------------------------------------------------------------------------------- /plugins/phashDuplicateTagger/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/plugins/phashDuplicateTagger/LICENSE -------------------------------------------------------------------------------- /plugins/phashDuplicateTagger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/plugins/phashDuplicateTagger/README.md -------------------------------------------------------------------------------- /plugins/phashDuplicateTagger/config_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/plugins/phashDuplicateTagger/config_example.py -------------------------------------------------------------------------------- /plugins/phashDuplicateTagger/phashDuplicateTagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/plugins/phashDuplicateTagger/phashDuplicateTagger.py -------------------------------------------------------------------------------- /plugins/phashDuplicateTagger/phashDuplicateTagger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/plugins/phashDuplicateTagger/phashDuplicateTagger.yml -------------------------------------------------------------------------------- /plugins/phashDuplicateTagger/requirements.txt: -------------------------------------------------------------------------------- 1 | stashapp-tools>=0.2.0 -------------------------------------------------------------------------------- /plugins/tagGraph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/plugins/tagGraph/README.md -------------------------------------------------------------------------------- /plugins/tagGraph/graph/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/plugins/tagGraph/graph/config.js -------------------------------------------------------------------------------- /plugins/tagGraph/graph/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/plugins/tagGraph/graph/index.html -------------------------------------------------------------------------------- /plugins/tagGraph/graph/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/plugins/tagGraph/graph/parse.js -------------------------------------------------------------------------------- /plugins/tagGraph/graph/vis.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/plugins/tagGraph/graph/vis.min.js -------------------------------------------------------------------------------- /plugins/tagGraph/tagGraph.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/StashScripts/HEAD/plugins/tagGraph/tagGraph.yml --------------------------------------------------------------------------------