convertir float dans datetime python

from datetime import datetime

datetime.fromtimestamp(*your_timestamp_here*)#.strftime('%Y-%m-%d') to convert to a formated string
Thoughtful Trout