In my Azure Blob Storage I have a folder named as IngestionTimestamp in ISO 8601 format. But I want to have the semicolons in time part. Instead, I get the %3A symbols.
I’ve tried to use the urllib.parse unquote Python library to decode the string.
Also, I use the datetime library to format the timestamp
current_timestamp_str = current_timestamp.strftime('%Y-%m-%dT%H:%M:%S')
decoded_timestamp = unquote(current_timestamp_str + '+00:00')
In VS Code it shows me the timestamp with semicolons. But when I land data into Blob container, I have the folder name like this: IngestionTimestamp=2021-01-01T01%3A20%3A33.
I want this: IngestionTimestamp=2021-01-01T01:20:33+00:00