You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
228 B
13 lines
228 B
import requests
|
|
import time
|
|
|
|
data = {"id": "58abde1c-d1ef-11ed-a2cd-aaaa001aad2e"}
|
|
|
|
start = time.time()
|
|
|
|
res = requests.post('http://104.244.90.248:14000/search', json=data)
|
|
end = time.time()
|
|
print(end - start)
|
|
|
|
|
|
print(res.text)
|