Table des matières

Babel - Internationalisation et localisation

Doc : https://babel.pocoo.org/en/latest/index.html

Installation

(venv) pip install babel

Formatage de date

from babel.dates import format_date
import datetime
 
d = datetime.date(1971, 4, 22)
 
d.strftime('%A, %d %B %Y')
# 'Thursday 22 April 1971'
 
format_date(d, format='full', locale='fr_FR')
# 'jeudi 22 avril 1971'