├── .gitignore ├── README.md └── app ├── __init__.py ├── config.py ├── templates └── index.html └── views.py /.gitignore: -------------------------------------------------------------------------------- 1 | /app/__pycache__ 2 | /venv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperencantez/GoogleMapsScraper/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperencantez/GoogleMapsScraper/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperencantez/GoogleMapsScraper/HEAD/app/config.py -------------------------------------------------------------------------------- /app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperencantez/GoogleMapsScraper/HEAD/app/templates/index.html -------------------------------------------------------------------------------- /app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperencantez/GoogleMapsScraper/HEAD/app/views.py --------------------------------------------------------------------------------