在 Python 中为某个 unix 时间戳安排一个事件

Schedule an event for a certain unix timestamp in Python

如何实现以下内容?

def thirty_seconds_in():
    print('meow')

at_time( time() + 30, thirty_seconds_in )

我需要自己的 thread/runloop 和 sleep(.01) 吗?

如您所说,第一个解决方案是实现自己的循环。

第二种解决方案是使用一些给定的库函数,例如 sched

但实际上您需要一个运行时循环来执行检查。