Skip to content

Instantly share code, notes, and snippets.

@looopTools
Last active September 22, 2015 19:46
Show Gist options
  • Save looopTools/f921d89fb175518b427d to your computer and use it in GitHub Desktop.
Save looopTools/f921d89fb175518b427d to your computer and use it in GitHub Desktop.
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