我正在使用一个小型的工作,每隔5分钟你会得到一些材料。 为了监控这个,我想写一个简单的python脚本。 但现在有一点道路,
如何制作一个每隔x分钟做一次循环的循环,同时仍然运行其他键盘输入而不会破坏循环?
答案 0 :(得分:3)
以下是使用threading.Timer的一个相当简单的示例。它在响应用户输入时每5秒显示当前时间。
此代码将在支持ANSI / VT100终端控制转义序列的任何终端中运行。
#!/usr/bin/env python3
''' Scrolling Timer
Use a threading Timer loop to display the current time
while processing user input
See https://stackoverflow.com/q/45130837/4014959
Written by PM 2Ring 2017.07.18
'''
import readline
from time import ctime
from threading import Timer
# Some ANSI/VT100 Terminal Control Escape Sequences
CSI = '\x1b['
CLEAR = CSI + '2J'
CLEAR_LINE = CSI + '2K'
SAVE_CURSOR = CSI + 's'
UNSAVE_CURSOR = CSI + 'u'
GOTO_LINE = CSI + '%d;0H'
def emit(*args):
print(*args, sep='', end='', flush=True)
# Show the current time in the top line using a Timer thread loop
def show_time(interval):
global timer
emit(SAVE_CURSOR, GOTO_LINE % 1, CLEAR_LINE, ctime(), UNSAVE_CURSOR)
timer = Timer(interval, show_time, (interval,))
timer.start()
# Set up scrolling, leaving the top line fixed
emit(CLEAR, CSI + '2;r', GOTO_LINE % 2)
# Start the timer loop
show_time(interval=5)
try:
while True:
# Get user input and print it in upper case
print(input('> ').upper())
except KeyboardInterrupt:
timer.cancel()
# Cancel scrolling
emit('\n', SAVE_CURSOR, CSI + '0;0r', UNSAVE_CURSOR)
您需要发送KeyboardInterrupt
,即点击 Ctrl C 来停止此程序,
答案 1 :(得分:0)
也许计时器对您的任务有帮助。我建议您查看以下链接:https://docs.python.org/2.4/lib/timer-objects.html。当计时器正在计数时,您可以执行其他任务,当时间到了,您可以将功能附加到计时器上以执行某些操作。此库中的计时器继承自线程