1
2
3
4
5
6
7
8
import json
import requests

url = "http://localhost:5000/objecttrajactory/lastnminutes/2"
r = requests.get(url)
print(r.status_code)
dataJson = r.json()
print(dataJson)