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

Method start_bot

KickViewBot.py:109–120  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

107 credits_label.pack(side=BOTTOM, padx=10, pady=10, anchor=SE)
108
109 def start_bot(self):
110 url = self.url_input.get().strip()
111 num_tabs = int(self.tabs_input.get().strip())
112
113 for i in range(0, num_tabs, 4):
114 tabs_to_open = min(4, num_tabs-i)
115 for j in range(tabs_to_open):
116 kickBot = KickBot(url)
117 t = Thread(target=kickBot.doTest)
118 t.start()
119 self.kick_bots.append(kickBot)
120 sleep(10)
121
122 def stop_bot(self):
123 for kickBot in self.kick_bots:

Callers

nothing calls this directly

Calls 1

KickBotClass · 0.70

Tested by

no test coverage detected