'v' is a python datetime object read from a DB - '2020-09-24 00:00:00'
I would like to stored above in LDAP in Zulu - so '2020-09-24 07:00:00' - as I am located in Los Angeles.
v = v.strftime('%Y%m%d%H%M%SZ') - converts directly to 20200924000000Z (not 20200924070000Z).
Is that the correct behaviour? If not, how can I best covert time read, to UTC, prior to injecting to LDAP?