├── .github ├── dependabot.yml └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── data └── .gitkeep ├── metagoofil.py ├── requirements.txt └── user_agents.txt /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdisk/metagoofil/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdisk/metagoofil/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdisk/metagoofil/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdisk/metagoofil/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdisk/metagoofil/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdisk/metagoofil/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /metagoofil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdisk/metagoofil/HEAD/metagoofil.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | google==3.0.0 2 | requests==2.32.5 3 | -------------------------------------------------------------------------------- /user_agents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdisk/metagoofil/HEAD/user_agents.txt --------------------------------------------------------------------------------