MCPcopy Index your code
hub / github.com/Infinity242/KickViewBot / run_script

Function run_script

KickViewBot.py:54–62  ·  view source on GitHub ↗
(url, num_threads)

Source from the content-addressed store, hash-verified

52 sleep(10)
53
54def run_script(url, num_threads):
55 processes = []
56 for i in range(num_threads):
57 bot = KickBot(url)
58 process = Process(target=bot.doTest)
59 process.start()
60 processes.append(process)
61 for process in processes:
62 process.join()
63
64if __name__ == '__main__':
65 url = 'https://example.com'

Callers 1

KickViewBot.pyFile · 0.70

Calls 1

KickBotClass · 0.70

Tested by

no test coverage detected