create - strftime python example
RFC 1123 Representación de fecha en Python? (5)
¿Existe una forma bastante sencilla de convertir un objeto datetime en una cadena de fecha / hora RFC 1123 (HTTP / 1.1), es decir, una cadena con el formato
Sun, 06 Nov 1994 08:49:37 GMT
Usar strftime
no funciona, ya que las cadenas dependen de la configuración regional. ¿Debo construir la cuerda a mano?
Bueno, aquí hay una función manual para formatearlo:
def httpdate(dt):
"""Return a string representation of a date according to RFC 1123
(HTTP/1.1).
The supplied date must be in UTC.
"""
weekday = ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"][dt.weekday()]
month = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep",
"Oct", "Nov", "Dec"][dt.month - 1]
return "%s, %02d %s %04d %02d:%02d:%02d GMT" % (weekday, dt.day, month,
dt.year, dt.hour, dt.minute, dt.second)
Puede establecer LC_TIME para forzar que stftime () use una configuración regional específica:
>>> locale.setlocale(locale.LC_TIME, ''en_US'')
''en_US''
>>> datetime.datetime.now().strftime(locale.nl_langinfo(locale.D_T_FMT))
''Wed 22 Oct 2008 06:05:39 AM ''
Puede usar la función formatdate () desde el módulo de correo electrónico estándar de Python:
from email.utils import formatdate
print formatdate(timeval=None, localtime=False, usegmt=True)
Da la hora actual en el formato deseado:
Wed, 22 Oct 2008 10:32:33 GMT
De hecho, esta función lo hace "a mano" sin usar strftime ()
Puede usar wsgiref.handlers.format_date_time desde stdlib, que no depende de la configuración regional
from wsgiref.handlers import format_date_time
from datetime import datetime
from time import mktime
now = datetime.now()
stamp = mktime(now.timetuple())
print format_date_time(stamp) #--> Wed, 22 Oct 2008 10:52:40 GMT
Puede usar email.utils.formatdate desde stdlib, que no depende de la configuración regional
from email.utils import formatdate
from datetime import datetime
from time import mktime
now = datetime.now()
stamp = mktime(now.timetuple())
print formatdate(
timeval = stamp,
localtime = False,
usegmt = True
) #--> Wed, 22 Oct 2008 10:55:46 GMT
Si puede establecer el proceso de configuración regional de forma amplia, puede hacer lo siguiente:
import locale, datetime
locale.setlocale(locale.LC_TIME, ''en_US'')
datetime.datetime.utcnow().strftime(''%a, %d %b %Y %H:%M:%S GMT'')
Si no desea establecer el proceso de configuración regional de ancho, puede usar el formato de fecha Babel
from datetime import datetime
from babel.dates import format_datetime
now = datetime.utcnow()
format = ''EEE, dd LLL yyyy hh:mm:ss''
print format_datetime(now, format, locale=''en'') + '' GMT''
Una forma manual de formatearlo que es idéntica a wsgiref.handlers.format_date_time es:
def httpdate(dt):
"""Return a string representation of a date according to RFC 1123
(HTTP/1.1).
The supplied date must be in UTC.
"""
weekday = ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"][dt.weekday()]
month = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep",
"Oct", "Nov", "Dec"][dt.month - 1]
return "%s, %02d %s %04d %02d:%02d:%02d GMT" % (weekday, dt.day, month,
dt.year, dt.hour, dt.minute, dt.second)
Si alguien que está leyendo esto está trabajando en un proyecto de Django, Django proporciona una función django.utils.http.http_date(epoch_seconds)
.
from django.utils.http import http_date
some_datetime = some_object.last_update
response[''Last-Modified''] = http_date(some_datetime.timestamp())