Converting Unix Epoch time to readable time information. Trials are as per below. It throws an error "OSError: [Errno 22] Invalid argument". Looks like the method does not like the given argument (1693063813031885), but it works great at https://unixtime.org/ where in "Your Time Zone".
import time
dt_ts = time.strftime("%m-%d-%Y %H:%M:%S", time.gmtime(1693063813031885))
print(dt_ts)
Output should be 2023-08-26-11:30:13.031_885(UTC-05:00)
.