├── .gitattributes ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── google └── .gitkeep ├── main.py └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serpapi/google-local-results-ai-server/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *__pycache__* 2 | .DS_Store 3 | .vscode/ -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serpapi/google-local-results-ai-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serpapi/google-local-results-ai-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serpapi/google-local-results-ai-server/HEAD/README.md -------------------------------------------------------------------------------- /google/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serpapi/google-local-results-ai-server/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serpapi/google-local-results-ai-server/HEAD/requirements.txt --------------------------------------------------------------------------------