├── .github ├── dependabot.yml └── workflows │ └── run-crawler.yml ├── .gitignore ├── LICENSE ├── README.md ├── SUMMARY.md ├── SUMMARY_RANKED.md ├── cache.py ├── ignore_list.lst ├── main.py ├── requirements.txt ├── scanners ├── fdroid_scanner.py ├── github_code_scanner.py ├── github_meta_scanner.py └── scanner.py ├── score.log ├── score.py └── util.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/app-crawler/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/run-crawler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/app-crawler/HEAD/.github/workflows/run-crawler.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/app-crawler/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/app-crawler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/app-crawler/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/app-crawler/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /SUMMARY_RANKED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/app-crawler/HEAD/SUMMARY_RANKED.md -------------------------------------------------------------------------------- /cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/app-crawler/HEAD/cache.py -------------------------------------------------------------------------------- /ignore_list.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/app-crawler/HEAD/ignore_list.lst -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/app-crawler/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/app-crawler/HEAD/requirements.txt -------------------------------------------------------------------------------- /scanners/fdroid_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/app-crawler/HEAD/scanners/fdroid_scanner.py -------------------------------------------------------------------------------- /scanners/github_code_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/app-crawler/HEAD/scanners/github_code_scanner.py -------------------------------------------------------------------------------- /scanners/github_meta_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/app-crawler/HEAD/scanners/github_meta_scanner.py -------------------------------------------------------------------------------- /scanners/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/app-crawler/HEAD/scanners/scanner.py -------------------------------------------------------------------------------- /score.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/app-crawler/HEAD/score.log -------------------------------------------------------------------------------- /score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/app-crawler/HEAD/score.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/app-crawler/HEAD/util.py --------------------------------------------------------------------------------