Is it possible to make a periodic update when using wxPython?

For example, as in PyGames, set an infinite loop with an update of the screen with a timeout.

    1 answer 1

    For periodic events, you can use the wx.Timer class.

    • Thank. I will check - EmptyMan