├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Readme assets └── zubdata google maps scraper.jpg ├── app ├── images │ ├── GMS.png │ └── Home.png ├── run.py ├── scraper │ ├── __init__.py │ ├── base.py │ ├── common.py │ ├── communicator.py │ ├── datasaver.py │ ├── error_codes.py │ ├── frontend.py │ ├── parser.py │ ├── scraper.py │ └── scroller.py └── settings.py ├── requirements.txt ├── setup_linux.sh └── setup_win.cmd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zubdata/Google-Maps-Scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zubdata/Google-Maps-Scraper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zubdata/Google-Maps-Scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zubdata/Google-Maps-Scraper/HEAD/README.md -------------------------------------------------------------------------------- /Readme assets/zubdata google maps scraper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zubdata/Google-Maps-Scraper/HEAD/Readme assets/zubdata google maps scraper.jpg -------------------------------------------------------------------------------- /app/images/GMS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zubdata/Google-Maps-Scraper/HEAD/app/images/GMS.png -------------------------------------------------------------------------------- /app/images/Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zubdata/Google-Maps-Scraper/HEAD/app/images/Home.png -------------------------------------------------------------------------------- /app/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zubdata/Google-Maps-Scraper/HEAD/app/run.py -------------------------------------------------------------------------------- /app/scraper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/scraper/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zubdata/Google-Maps-Scraper/HEAD/app/scraper/base.py -------------------------------------------------------------------------------- /app/scraper/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zubdata/Google-Maps-Scraper/HEAD/app/scraper/common.py -------------------------------------------------------------------------------- /app/scraper/communicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zubdata/Google-Maps-Scraper/HEAD/app/scraper/communicator.py -------------------------------------------------------------------------------- /app/scraper/datasaver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zubdata/Google-Maps-Scraper/HEAD/app/scraper/datasaver.py -------------------------------------------------------------------------------- /app/scraper/error_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zubdata/Google-Maps-Scraper/HEAD/app/scraper/error_codes.py -------------------------------------------------------------------------------- /app/scraper/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zubdata/Google-Maps-Scraper/HEAD/app/scraper/frontend.py -------------------------------------------------------------------------------- /app/scraper/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zubdata/Google-Maps-Scraper/HEAD/app/scraper/parser.py -------------------------------------------------------------------------------- /app/scraper/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zubdata/Google-Maps-Scraper/HEAD/app/scraper/scraper.py -------------------------------------------------------------------------------- /app/scraper/scroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zubdata/Google-Maps-Scraper/HEAD/app/scraper/scroller.py -------------------------------------------------------------------------------- /app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zubdata/Google-Maps-Scraper/HEAD/app/settings.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zubdata/Google-Maps-Scraper/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zubdata/Google-Maps-Scraper/HEAD/setup_linux.sh -------------------------------------------------------------------------------- /setup_win.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zubdata/Google-Maps-Scraper/HEAD/setup_win.cmd --------------------------------------------------------------------------------