├── .gitignore ├── README.md ├── requirements.txt └── whatscraper.py /.gitignore: -------------------------------------------------------------------------------- 1 | scrapped* 2 | __pycache__/ 3 | 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpeedX/WhatScraper/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | google 2 | -------------------------------------------------------------------------------- /whatscraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpeedX/WhatScraper/HEAD/whatscraper.py --------------------------------------------------------------------------------