MCPcopy Create free account
hub / github.com/Infinity242/KickViewBot / run_script

Function run_script

KickViewBotNUI.py:58–71  ·  view source on GitHub ↗
(url, num_threads)

Source from the content-addressed store, hash-verified

56 pass
57
58def run_script(url, num_threads):
59 processes = []
60 num_windows = 0
61 for i in range(num_threads):
62 bot = KickBot(url)
63 process = Process(target=bot.doTest)
64 process.start()
65 processes.append(process)
66 num_windows += 1
67 if num_windows == 4:
68 num_windows = 0
69 sleep(6)
70 for process in processes:
71 process.join()
72
73if __name__ == '__main__':
74 print("This tool was created by AnonX#8622")

Callers 1

KickViewBotNUI.pyFile · 0.70

Calls 1

KickBotClass · 0.70

Tested by

no test coverage detected