8 lines
235 B
Python
8 lines
235 B
Python
import requests
|
|
import json
|
|
from termcolor import cprint
|
|
|
|
endpoint = "http://127.0.0.1:8081/tuto/"
|
|
response= requests.get(endpoint, params={"useless":123}, json = {"name":"cece"})
|
|
cprint(json.dumps(response.json(), indent=4), "cyan")
|