Answer the question
In order to leave comments, you need to log in
How to reuse a yandexdriver instance in a new thread?
from multiprocessing.pool import ThreadPool
I won't provide all the code. Initiated 3 instances of yandexdriver using the homemade stock_of_drivers function and saved them to the sod variable .
Created a container for 3 threads.
Created 3 streams, where get_content is a parser, chunk is a list of strings to be added to the dialog box of the page being processed.
sod = stock_of_drivers(3)
pool = ThreadPool(processes=3)
async_result0 = pool.apply_async(get_content, (chunk[0], sod['driver0']))
async_result1 = pool.apply_async(get_content, (chunk[1], sod['driver1']))
async_result2 = pool.apply_async(get_content, (chunk[2], sod['driver2']))
Answer the question
In order to leave comments, you need to log in
Understood! In the get_content parsing function , I removed driver.quit() everywhere , I stop the driver from outside. Now everything works, and quite quickly. While I'm combing the code, I'm finishing it, but even with three threads, the acceleration is noticeable.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question