UTC à ISO 8601 avec des informations sur le fuseau horaire (Python 3):

import datetime
datetime.datetime.utcnow().replace(tzinfo=datetime.timezone.utc).isoformat()
>>> 2020-03-20T01:31:12.467113+00:00
Puzzled Puffin