Comments on: Sérialiser et parser une date en Python: formats de strftime/strptime et timestamps http://sametmax.com/serialiser-et-parser-une-date-en-python-formats-de-strftimestrptime-et-timestamps/ Du code, du cul Mon, 28 Oct 2019 11:54:55 +0000 hourly 1 https://wordpress.org/?v=4.9.7 By: floweb http://sametmax.com/serialiser-et-parser-une-date-en-python-formats-de-strftimestrptime-et-timestamps/#comment-188730 Mon, 07 Aug 2017 15:37:30 +0000 http://sametmax.com/?p=1272#comment-188730 À la suite de la lecture de ce billet, j’ai découvert ce site: http://strftime.org

]]>
By: Sam http://sametmax.com/serialiser-et-parser-une-date-en-python-formats-de-strftimestrptime-et-timestamps/#comment-157629 Thu, 12 Mar 2015 16:05:23 +0000 http://sametmax.com/?p=1272#comment-157629 Merci, c’est corrigé.

]]>
By: Drife http://sametmax.com/serialiser-et-parser-une-date-en-python-formats-de-strftimestrptime-et-timestamps/#comment-156474 Fri, 20 Feb 2015 09:12:25 +0000 http://sametmax.com/?p=1272#comment-156474 Un article très bien foutu comme d’hab.

Pas mal de fautes par contre, qui nuisent à la crédibilité du propos (c’est dommage !).

Même si l’article est vieux, ça vaut le coup de corriger ?

MySQl -> MySQL

odre -> ordre

marchin -> machin

seconde, microsecondes -> seconde, microseconde

on perd les microseconde -> on perd les microsecondes

]]>
By: Sam http://sametmax.com/serialiser-et-parser-une-date-en-python-formats-de-strftimestrptime-et-timestamps/#comment-132081 Wed, 03 Sep 2014 12:27:56 +0000 http://sametmax.com/?p=1272#comment-132081 Hello,

Pour les demandes d’aide, un forum est plus approprié qu’un blog.

]]>
By: herve http://sametmax.com/serialiser-et-parser-une-date-en-python-formats-de-strftimestrptime-et-timestamps/#comment-131999 Wed, 03 Sep 2014 09:34:13 +0000 http://sametmax.com/?p=1272#comment-131999 Bonjour, J’ai un format de date “Lundi 25 Septembre 2014” que j’aimerai sérialiser au format ISO 8601 “2014-09-25” mais mon code ne marche pas:

valeur = ‘Lundi 25 Septembre 2014’
valeur = datetime.strptime(valeur, ‘%A %d %B %Y %H:%M’)
valeur = datetime.strftime(valeur ,’%Y-%m-%d’)

par contre lorsque valeur = “Monday 25 september 2014′ tout fonctionne nickel. Le soucis vient de la langue quelqu’un aurait-il une idée pour m’aider à convertir les dates en français ?

]]>
By: Billou http://sametmax.com/serialiser-et-parser-une-date-en-python-formats-de-strftimestrptime-et-timestamps/#comment-13326 Wed, 14 Aug 2013 09:02:52 +0000 http://sametmax.com/?p=1272#comment-13326 Concernant la conversion timestamp/date/timestamp :

calendar.timegm(d.utctimetuple())
=> cela fournit un timestamp en UTC (sans flottant)

datetime.datetime.fromtimestamp(1342973940)
=> cela fournit une date LOCAL

Si l’on veut fournir une date en UTC, mieux vaut faire :
datetime.datetime.utcfromtimestamp(1342973940)

]]>
By: Sam http://sametmax.com/serialiser-et-parser-une-date-en-python-formats-de-strftimestrptime-et-timestamps/#comment-4718 Sun, 30 Dec 2012 04:05:18 +0000 http://sametmax.com/?p=1272#comment-4718 Fixed.

]]>
By: François http://sametmax.com/serialiser-et-parser-une-date-en-python-formats-de-strftimestrptime-et-timestamps/#comment-4716 Sat, 29 Dec 2012 23:37:04 +0000 http://sametmax.com/?p=1272#comment-4716 Il y a un namespace incorrect :
datetime.strptime('2012-07-22 16:19:00.539570', '%Y-%m-%d %H:%M:%S.%f')

]]>
By: Sam http://sametmax.com/serialiser-et-parser-une-date-en-python-formats-de-strftimestrptime-et-timestamps/#comment-995 Thu, 02 Aug 2012 17:31:33 +0000 http://sametmax.com/?p=1272#comment-995 Pour le gars qui a cherché:

python date hier

>>> import datetime
>>> print datetime.datetime.now() - datetime.timedelta(1)
2012-08-01 13:51:06.508446
]]>