😝

😝

DarkzzAngel
import requests


url = "https://www.timeapi.io/api/Time/current/zone?timeZone=Asia/Kolkata"

#resp = requests.get(url).json()

resp = requests.get(url).json()

print(resp["time"])

Report Page