Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用一两年前的一些代码,它有:
import pendulum pendulum.Interval(minutes=1000)
这适用于 pendulum 版本 1.5.0,但不适用于最新版本 2.0.5。pendulum.Interval最新版本中是否有等价物?
pendulum.Interval
代码使用 Interval 循环遍历时间范围。看起来最新版本应该是:
dt = pendulum.now() dt.add(minutes=1000)
试试这个:- pendulum.duration(minutes=1000)