Files
2021-09-17 10:07:06 -07:00

8 lines
105 B
Python

import requests
base = "http://127.0.0.1:5000/"
r = requests.get(base + "helloworld")
print(r.json())