├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── input.txt ├── main.py └── requirements.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amineboutarfi/google_maps_scraper/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | dev -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amineboutarfi/google_maps_scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amineboutarfi/google_maps_scraper/HEAD/README.md -------------------------------------------------------------------------------- /input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amineboutarfi/google_maps_scraper/HEAD/input.txt -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amineboutarfi/google_maps_scraper/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amineboutarfi/google_maps_scraper/HEAD/requirements.txt --------------------------------------------------------------------------------