mirror of
https://github.com/opelly27/PythonAPI.git
synced 2026-05-20 01:47:36 +00:00
8 lines
105 B
Python
8 lines
105 B
Python
import requests
|
|
|
|
|
|
base = "http://127.0.0.1:5000/"
|
|
|
|
r = requests.get(base + "helloworld")
|
|
|
|
print(r.json()) |