Python 的 humanize timedelta() 告诉我 minimum_unit 是一个无效参数?

Python's humanize timedelta() tells me that minimum_unit is an invalid argument?

我正在尝试打印两个日期之间的大致时差。在这里回答得很好的问题:Format timedelta to string 给出了几个答案,我可以使用其中一个来解决我的问题。

但是,我真的很喜欢humanize这种方法。不幸的是我无法让它工作,因为 documentation 中列出的 minimum_unit 关键字参数给我一个错误:

import datetime as dt
import humanize as hum
d1=dt.datetime(2003,3,17)
d2=dt.datetime(2007,9,21)
hum.naturaldelta(d2-d1, minimum_unit="days")

---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-49-238c3a390a42> in <module>()
      3 d1=dt.datetime(2003,3,17)
      4 d2=dt.datetime(2007,9,21)
----> 5 hum.naturaldelta(d2-d1, minimum_unit="days")

TypeError: naturaldelta() got an unexpected keyword argument 'minimum_unit'

注意:months=True 参数没有帮助,因为当差异小于一年时,它只强制以月而不是天为单位返回 timedelta。

知道我做错了什么吗? (如果这是不可能的,那么我会使用一些解决方法。)

编辑:

我正在使用 https://colab.research.google.com/drive/,这似乎 运行 Python“3.7.10(默认,2021 年 2 月 20 日,21:17:23)[GCC 7.5.0] “

EDIT/SOLUTION:

对不起,我很笨,但我会留下这个问题。如果有人要删除它,没有异议。 MrFuppes 的评论帮助我意识到这主要是由于 Google 没有使用当前版本。事实上,在检查 pip list 后,我看到只安装了 0.x 版本,而 3.x 是最新的。在 运行ning pip install humanize --upgrade 之后,我能够使用接受的答案中建议的 precisedelta 函数。

使用humanfriendly

import datetime
import humanfriendly

d1 = datetime.datetime(2003, 3, 17)
d2 = datetime.datetime(2007, 9, 21)
date_delta = d2 - d1

# there is no month
humanfriendly.format_timespan(date_delta)
>>> '4 years, 27 weeks and 4 days'

或者这样:

from humanize.time import precisedelta

precisedelta(date_delta, minimum_unit='days')
>>> '4 years, 6 months and 5.84 days'
precisedelta(d2-d1, minimum_unit='days', suppress=['months'])
>>> '4 years and 188.84 days'
precisedelta(d2-d1, minimum_unit='days', format="%0.0f")
>>> '4 years, 6 months and 6 days'