top of page

Menu
import requests
query_params = {"to": "visandreams@gmail.com"}
otp=requests.get("https://viswa.pythonanywhere.com/send_otp", params=query_params)
print(otp.json())
bottom of page