Skip to content
Advertisement

Combing concurrent.future.as_complete() with dictionary using zip()

I am a first time user of concurrent.futures and following the official guides.

Problem: Inside the as_completed() block, how do I access the k, v which is inside the future_to_url?

The k variable is vital.

Using something like:

JavaScript

I stumbled on this post however I cannot decipher the syntax to reproduce

Original

JavaScript

Second Attempt – Using zip which breaks

JavaScript

Third Broken Attempt – Using Map source

JavaScript

TypeError: ‘generator’ object is not callable

Fourth Broken Attempt – Storing the k,v pairs before the as_completed() loop and pairing them with an enumerate index

JavaScript

This does not work as the URL, does not match the key, they seem to be mismatched, and I cannot rely on this behaviour working.

For completeness, here are the dependencies

JavaScript

Sources of inspiration:

Advertisement

Answer

This has nothing to do with futures and more to do with list comprehension.

JavaScript

Is looping everything in the urls dict and getting the key and value(k, v) and submitting that to the executor to run visit_url. k and v will not be available outside of the for loop because the scope of those variables belong to the for loop.

If you want to have the results of the call and what URL it was called on you can pass the URL back as a return tuple:

JavaScript

After comments made by OP (mainly that this seems dirty by using the scope of the visit_url function to pass context/keys back after exec) I can propose a more OOP way of doing this:

JavaScript

This ensures the response, ID and URL are together in their class which might be cleaner for some. The for loop to submit to the executor is simplified as well.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement