Skip to content
Advertisement

How to make future calls and wait until complete with Python?

I have the following code where I have a list of usernames and I try and check if the users are in a specific Windows Usergroup using net user domain | find somegroup.

The problem is that I run that command for about 8 usergroups per username and it is slow. I would like to send off these calls using futures and even separate threads (if it makes it quicker).

I just have to wait at the end before i do anything else. How do I go about doing it in Python?

JavaScript

Advertisement

Answer

(This answer currently ignores HTML parsing your code does … you can queue that into a pool identically to how this approach queues the net user calls)

First, lets define a function that takes a tuple of (user, group) and returns the desired information.

JavaScript

Now, we can run this in a thread pool using multiprocessing.dummy.Pool

JavaScript

The results are a list of (user, group, data) tuples and can be processed as you desire.

Note: This code is currently untested due to a difference in platforms

Advertisement