MCPcopy Index your code
hub / github.com/PySimpleGUI/PySimpleGUI / start

Method start

PySimpleGUI/PySimpleGUI.py:9790–9798  ·  view source on GitHub ↗

Starts a timer by starting a timer thread Adds timer to the list of active timers

(self)

Source from the content-addressed store, hash-verified

9788 return
9789
9790 def start(self):
9791 """
9792 Starts a timer by starting a timer thread
9793 Adds timer to the list of active timers
9794 """
9795 self.running = True
9796 self.thread = threading.Thread(target=self.timer_thread, daemon=True)
9797 self.thread.start()
9798 _TimerPeriodic.active_timers[self.id] = self
9799
9800 def stop(self):
9801 """

Callers 13

__init__Method · 0.95
the_guiFunction · 0.80
the_guiFunction · 0.80
mainFunction · 0.80
display_notificationFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
start_threadMethod · 0.80
shell_with_animationFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected