For web scraper
from bs4 import BeautifulSoupimport requests
For image scraper:
from re import splitfrom PIL import Imagefrom io import BytesIOimport os
Scrapes the web for the entered Search term. Example: pizza
Note: The new commit also displays a short summary of the scraped searches.
Scrapes the web for images and saves them to a directory by same name as search term.

