Untitled

Anonymous
plain_text
11/08/2021 2:04 AM
512 B
32
Indexable
import requests
import time
start_time = time.time()
r = requests.post("http://159.223.115.38/sensors",
                  data={"sensorType":"uwb",
                        "lat":29842,"lon":32323,
                        "objectID":1,
                        "objectType":"human",
                        "sensorID":"1"})
print(time.time()-start_time)
print(r.status_code, r.reason)
Editor is loading...