Month in French

Hello everyone,
Is it possible to get the month in French ?Date
Thank you

Hi @jfbrigaud,

Capture

Just use this python code (no other nodes needed for current date)

import sys
sys.path.append(r'C:\Program Files (x86)\IronPython 2.7\DLLs')
sys.path.append(r'C:\Program Files (x86)\IronPython 2.7\Lib')
import time
import locale

locale.setlocale(locale.LC_TIME, "fr_FR")

OUT = time.strftime("%d %b %Y")
1 Like

Thank you, it works very well