Files
tz-converter/README.md
Nathan Woodburn 6d7019bba5
All checks were successful
Build Docker / BuildImage (push) Successful in 50s
feat: Add intial site
2025-03-06 15:15:24 +11:00

633 B

python-webserver-template

Python3 website template including git actions

Example curl Commands

Convert Specific Time Between Two Timezones

curl -X POST http://localhost:5000/api/v1/convert -H "Content-Type: application/json" -d '{
  "from_tz": "Australia/Sydney",
  "to_tz": "UTC",
  "time": "2023-10-10T15:00:00"
}'

Convert Specific Time Between Multiple Timezones

curl -X POST http://localhost:5000/api/v1/convert_multiple -H "Content-Type: application/json" -d '{
  "from_tz": "Australia/Sydney",
  "time": "2023-10-10T15:00:00",
  "to_tzs": ["UTC", "America/New_York", "Europe/London"]
}'