|
@@ -29,6 +29,16 @@ app = Flask('AMAN')
|
|
if __name__ == '__main__':
|
|
if __name__ == '__main__':
|
|
app.run()
|
|
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>')
|
|
@app.route('/aman/configuration/<icao>')
|
|
def configuration(icao):
|
|
def configuration(icao):
|
|
airport = aman.findAirport(icao.upper())
|
|
airport = aman.findAirport(icao.upper())
|