feat: Remove tz from output time

This commit is contained in:
Nathan Woodburn 2025-03-06 15:25:21 +11:00
parent f2c29f4073
commit 5ec748b212
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -159,7 +159,7 @@ def convert():
return jsonify(
{
"from": from_tz_time.strftime("%Y-%m-%d %H:%M:%S %Z"),
"to": to_tz_time.strftime("%Y-%m-%d %H:%M:%S %Z"),
"to": to_tz_time.strftime("%Y-%m-%d %H:%M:%S"),
}
)
@ -187,10 +187,7 @@ def convert_multiple():
results = {}
for original_tz, tz in to_tz_list:
to_tz_time = from_tz_time.astimezone(tz)
offset = to_tz_time.strftime('%z')
offset_formatted = f"UTC{offset[:3]}:{offset[3:]}" if offset else ""
tz_name = to_tz_time.tzname() if to_tz_time.tzname() else offset_formatted
results[original_tz] = f"{to_tz_time.strftime('%Y-%m-%d %H:%M:%S')} {tz_name}"
results[original_tz] = f"{to_tz_time.strftime('%Y-%m-%d %H:%M:%S')}"
except Exception as e:
return jsonify({"error": str(e)}), 400