├── .gitignore ├── LICENSE ├── README.md ├── city.py ├── collectdata.py ├── db.py ├── mysql_setup ├── requirements.txt └── storecoords.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niksoc/bigbasket-scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niksoc/bigbasket-scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niksoc/bigbasket-scraper/HEAD/README.md -------------------------------------------------------------------------------- /city.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niksoc/bigbasket-scraper/HEAD/city.py -------------------------------------------------------------------------------- /collectdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niksoc/bigbasket-scraper/HEAD/collectdata.py -------------------------------------------------------------------------------- /db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niksoc/bigbasket-scraper/HEAD/db.py -------------------------------------------------------------------------------- /mysql_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niksoc/bigbasket-scraper/HEAD/mysql_setup -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niksoc/bigbasket-scraper/HEAD/requirements.txt -------------------------------------------------------------------------------- /storecoords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niksoc/bigbasket-scraper/HEAD/storecoords.py --------------------------------------------------------------------------------