Re: Timer
Derek Fountain a écrit :[color=blue]
> Does Python have a timer mechanism? i.e. an "after 500 milliseconds, run
> this bit of code" sort of thing?[/color]
The sched module in the standard library may be what you're looking for.
--
Alexandre Fayolle
LOGILAB, Paris (France).
http://www.logilab.com http://www.logilab.fr http://www.logilab.org
Développement logiciel avancé - Intelligence Artificielle - Formations
Derek Fountain a écrit :[color=blue]
> Does Python have a timer mechanism? i.e. an "after 500 milliseconds, run
> this bit of code" sort of thing?[/color]
The sched module in the standard library may be what you're looking for.
--
Alexandre Fayolle
LOGILAB, Paris (France).
http://www.logilab.com http://www.logilab.fr http://www.logilab.org
Développement logiciel avancé - Intelligence Artificielle - Formations
Comment