Explorar o código

add an endpoint to get the airport information

Sven Czarnian %!s(int64=3) %!d(string=hai) anos
pai
achega
d2b326fa9c
Modificáronse 1 ficheiros con 10 adicións e 0 borrados
  1. 10 0
      app.py

+ 10 - 0
app.py

@@ -29,6 +29,16 @@ app = Flask('AMAN')
 if __name__ == '__main__':
     app.run()
 
+@app.route('/aman/airports')
+def airports():
+    retval = []
+
+    for airport in aman.Workers:
+        retval.append(airport.Icao)
+
+    data = json.dumps(retval, ensure_ascii=True)
+    return Response(data, status=200, mimetype='application/json')
+
 @app.route('/aman/configuration/<icao>')
 def configuration(icao):
     airport = aman.findAirport(icao.upper())