以英文打印当前日期

Print current date in English language

在 Odoo 中,我想在 QWeb 报告中用英文打印当前日期:

<span t-esc="datetime.datetime.now().strftime('%d %B %Y')"/>

预期行为是:2019 年 1 月 20 日

当前行为是:20 janvier 2019

我应该怎么做才能用英语而不是系统语言(法语)显示月份?

尝试使用 LOCALE

import locale 

locale.setlocale(locale.LC_ALL, 'en_US')

print(datetime.datetime.now().strftime('%d %B %Y'))