├── .gitignore ├── LICENSE ├── README.md ├── config.py ├── csv2sql.py ├── data └── .gitignore ├── html └── .gitignore ├── logs └── .gitignore ├── requirements.txt ├── sample_output.csv ├── scrape_gm.py └── tests └── test_urls.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philshem/gmaps_popular_times_scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philshem/gmaps_popular_times_scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philshem/gmaps_popular_times_scraper/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philshem/gmaps_popular_times_scraper/HEAD/config.py -------------------------------------------------------------------------------- /csv2sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philshem/gmaps_popular_times_scraper/HEAD/csv2sql.py -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | *.csv 2 | *.sqlite -------------------------------------------------------------------------------- /html/.gitignore: -------------------------------------------------------------------------------- 1 | *.html -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- 1 | *.log -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4 2 | selenium 3 | pandas -------------------------------------------------------------------------------- /sample_output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philshem/gmaps_popular_times_scraper/HEAD/sample_output.csv -------------------------------------------------------------------------------- /scrape_gm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philshem/gmaps_popular_times_scraper/HEAD/scrape_gm.py -------------------------------------------------------------------------------- /tests/test_urls.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philshem/gmaps_popular_times_scraper/HEAD/tests/test_urls.csv --------------------------------------------------------------------------------