from cph import Counter import time count = Counter() ''' This whole script just clears current counter and begins an infinite loop that counts minutes. I run it in a screen or background the process ''' def main(): count.clear_timer() count.run_timer() if __name__ == '__main__': main()