├── .gitattributes ├── .github └── workflows │ ├── deploy.yml │ └── validate.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── broken └── Fansly │ └── Fansly.yml ├── scrapers ├── Coomer │ ├── Fansly │ │ └── CoomerFansly.yml │ ├── OnlyFans │ │ └── CoomerOnlyFans.yml │ └── SHALookup │ │ ├── LICENCE │ │ ├── SHALookup.py │ │ ├── SHALookup.yml │ │ ├── characters.py │ │ ├── config.py.example │ │ ├── confusables.py │ │ ├── oftitle.py │ │ ├── requirements.txt │ │ └── util.py ├── Darkfans │ └── Darkfans.yml ├── Loverfans │ └── Loverfans.yml ├── ManyVids │ ├── ManyVids.yml │ └── ManyVidsClub.yml ├── OnlyFans │ └── OnlyFans.yml ├── Scatbook │ └── Scatbook.yml ├── WetSpace │ └── WetSpace.yml └── dirtyFans │ └── dirtyFans.yml ├── validate.js └── validator ├── index.js ├── package.json ├── scraper.schema.json └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/README.md -------------------------------------------------------------------------------- /broken/Fansly/Fansly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/broken/Fansly/Fansly.yml -------------------------------------------------------------------------------- /scrapers/Coomer/Fansly/CoomerFansly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/scrapers/Coomer/Fansly/CoomerFansly.yml -------------------------------------------------------------------------------- /scrapers/Coomer/OnlyFans/CoomerOnlyFans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/scrapers/Coomer/OnlyFans/CoomerOnlyFans.yml -------------------------------------------------------------------------------- /scrapers/Coomer/SHALookup/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/scrapers/Coomer/SHALookup/LICENCE -------------------------------------------------------------------------------- /scrapers/Coomer/SHALookup/SHALookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/scrapers/Coomer/SHALookup/SHALookup.py -------------------------------------------------------------------------------- /scrapers/Coomer/SHALookup/SHALookup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/scrapers/Coomer/SHALookup/SHALookup.yml -------------------------------------------------------------------------------- /scrapers/Coomer/SHALookup/characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/scrapers/Coomer/SHALookup/characters.py -------------------------------------------------------------------------------- /scrapers/Coomer/SHALookup/config.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/scrapers/Coomer/SHALookup/config.py.example -------------------------------------------------------------------------------- /scrapers/Coomer/SHALookup/confusables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/scrapers/Coomer/SHALookup/confusables.py -------------------------------------------------------------------------------- /scrapers/Coomer/SHALookup/oftitle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/scrapers/Coomer/SHALookup/oftitle.py -------------------------------------------------------------------------------- /scrapers/Coomer/SHALookup/requirements.txt: -------------------------------------------------------------------------------- 1 | emojis 2 | requests 3 | stashapp-tools>=0.2.40 -------------------------------------------------------------------------------- /scrapers/Coomer/SHALookup/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/scrapers/Coomer/SHALookup/util.py -------------------------------------------------------------------------------- /scrapers/Darkfans/Darkfans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/scrapers/Darkfans/Darkfans.yml -------------------------------------------------------------------------------- /scrapers/Loverfans/Loverfans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/scrapers/Loverfans/Loverfans.yml -------------------------------------------------------------------------------- /scrapers/ManyVids/ManyVids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/scrapers/ManyVids/ManyVids.yml -------------------------------------------------------------------------------- /scrapers/ManyVids/ManyVidsClub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/scrapers/ManyVids/ManyVidsClub.yml -------------------------------------------------------------------------------- /scrapers/OnlyFans/OnlyFans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/scrapers/OnlyFans/OnlyFans.yml -------------------------------------------------------------------------------- /scrapers/Scatbook/Scatbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/scrapers/Scatbook/Scatbook.yml -------------------------------------------------------------------------------- /scrapers/WetSpace/WetSpace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/scrapers/WetSpace/WetSpace.yml -------------------------------------------------------------------------------- /scrapers/dirtyFans/dirtyFans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/scrapers/dirtyFans/dirtyFans.yml -------------------------------------------------------------------------------- /validate.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 'use strict'; 3 | require('./validator/index.js')(); -------------------------------------------------------------------------------- /validator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/validator/index.js -------------------------------------------------------------------------------- /validator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/validator/package.json -------------------------------------------------------------------------------- /validator/scraper.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/validator/scraper.schema.json -------------------------------------------------------------------------------- /validator/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FansDB/metadata-scrapers/HEAD/validator/yarn.lock --------------------------------------------------------------------------------