there are date strings like 'Apr 21, 2021, 7:43:51 AM GMT+5:30'
(downloaded from google spreadsheet into CSV).
What are these date formats? How to parse them into a timestamp?
Update
I have a function:
def to_timestamp(s):
datetime_object = datetime.strptime(s, '%b %d, %Y, %I:%M:%S %p')
return datetime_object.timestamp()
but I have no idea how to process GMT+5:30