The python thread module does provide concurrency, however the Python GIL (Global Interpreter Lock) prevents the threads from running in parallel as each thread has to wait for the GIL to be released ...
Python-Multithread-Scraper is a project for me to learn about multithreading in python and web scraping with Selenium + BeautifulSoup. Multithreading significantly reduces the work for web scraping ...