I have two dates, start date and end date, where both needs to used in google tag manager in EST timezone using python.
Currently when I fetch the dates from jira using api, I am getting in the UTC format for start date, but for end date, getting only the date value, that too in class str type.
This is what I got from jira
start date: 2021-09-20T07:16:08.000+0000
end date: 2021-09-21
Now I need to convert these and create a tag using python gtm api, where the start and end date should be in EST timezone.
Time in start date should be 00:00:00 and in end date, it should be 23:59:59 (both the time in EST).
Anyone please help me on this?
If im underderstanding correctly, it are both strings that you are getting back like this?
Then first what you want to do, is split on the spaces and select the last item
If you just get the datetime as string like this, ignore part above:
Now just parse it towards a datetime by using the dateutil.parser
For the enddate string