view modules/net_mon/timer_test.py @ 46:ba41c0fbd6e7

Print HTML to stdout if called directly For debugging purposes.
author Gernot Schulz <gernot@intevation.de>
date Sun, 31 Jan 2016 15:39:27 +0100
parents 1a13a4ecf931
children
line wrap: on
line source
#!/usr/bin/env python3

""" <DECRIPTION>

author: Sean Engelhardt <sean.engelhardt@intevation.de>

This is Free Software unter the terms of the
GNU GENERAL PUBLIC LICENSE Version 2 or later.
See http://www.gnu.org/licenses/gpl-3.0.txt for details
"""

import time, threading

def foo():
    print(time.ctime())
    threading.Timer(10, foo).start()

foo()
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)