Forum >> Principianti >> Data salvata in un formato che non capisco

Pagina: 1

Salve a tutti.
Ho scritto uno script per scaricare le estrazioni del superenalotto dal sito sisal. Il formato dei dati è json e l'unico problema che ho è che la data è in un formato che non comprendo e non riesco a elaborare.




Qualche esempio:

- 1609614000000 dovrebbe essere 02/01/2021

- 1609873200000 dovrebbe essere 05/01/2021

- 1610046000000 dovrebbe essere 07/01/2021

- 1610218800000 dovrebbe essere 09/01/2021




Qualche suggerimento per convertirle in un formato "normale"?
>>> from datetime import datetime
>>> datetime.fromtimestamp(1609614000000 // 1000)
datetime.datetime(2021, 1, 2, 20, 0)
>>> datetime.fromtimestamp(1609873200000 // 1000)
datetime.datetime(2021, 1, 5, 20, 0)
>>> datetime.fromtimestamp(1610046000000 // 1000)
datetime.datetime(2021, 1, 7, 20, 0)
>>> datetime.fromtimestamp(1610218800000 // 1000)
datetime.datetime(2021, 1, 9, 20, 0)
👋


THE 🍺-WARE LICENSE (Revision ㊷):
<㎝🐌🐍.🇮🇹> wrote this post. As long as you retain this notice you
can do whatever you want with this stuff. If we meet some day, and you
think this stuff is worth it, you can buy me a 🍺 in return. -- ㎝
Funziona, grazie :)


Pagina: 1



Esegui il login per scrivere una risposta.