Installation
- Fork the Project
- Clone your forked repository on your host machine
git clone <your-forked-repository.git>
cd Scrapster
- To install the dependencies and packages on your host machine
pip install -r requirements.txt
- Install chromedriver
- Ensure you have the appropriate version of ChromeDriver on your machine if you would like to scrape from Google Images.
On Linux
PATH = "/home/sai/chromedriver" # path to chromedriver
LIMIT = 100 # how much images you want to download
query = "solar panels" # keyword you want to search for
On Windows
PATH = "path/to/chromedriver.exe" # path to chromedriver
LIMIT = 100 # how much images you want to download
query = "solar panels" # keyword you want to search for
python main.py