import requests
url = "https://localhost:44380/Ash"
response = requests.get(url, verify = False)
print(response.text)
# python -m pip install requests
