Last active
September 22, 2015 19:46
-
-
Save looopTools/f921d89fb175518b427d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for x in range(0, test_amount): | |
threads.append(threading.Thread(target=thread_test, args=[website, element_id, x])) | |
for thread in threads: | |
print("Thread has been started") | |
thread.start() | |
for thread in threads: | |
thread.join() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment