Merge pull request #2 from altf4arnold/datapull

first actual data shower \o/
This commit is contained in:
Arnold Dechamps 2024-03-18 23:17:47 +01:00 committed by GitHub
commit 4ec342ef24
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,10 +12,29 @@ auth_header = {'x-apikey':config.FLIGHTAWAREKEY}
response = requests.get(apiUrl + f"airports/{airport}/flights/scheduled_departures",
params=payload, headers=auth_header)
print("Flight Operator Time Destination acft-type")
if response.status_code == 200:
departures = response.json()
print(departures)
departures = response.json()["scheduled_departures"]
name = "unknown"
operator = "unknown"
scheduled_off = "unknown"
destination = "unknown"
acfttype = "unknown"
for flight in departures:
if flight["ident"] is not None:
name = flight["ident"]
if flight["operator"] is not None:
operator = flight["operator"]
if flight["scheduled_off"] is not None:
scheduled_off = flight["scheduled_off"]
if flight["destination"] is not None:
if flight["destination"]["name"] is not None:
destination = (flight["destination"]["code_icao"] + " " + flight["destination"]["name"])
if flight["aircraft_type"] is not None:
acfttype = flight["aircraft_type"]
print(name + " " + operator + " " + scheduled_off + " " + destination + " " + acfttype)
else:
print("Error executing request")