We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84cd95c commit 88c34b7Copy full SHA for 88c34b7
app.py
@@ -27,8 +27,8 @@
27
"docname": "People-In-Space"},
28
]
29
30
-
31
@app.route("/")
+
32
def index():
33
return render_template('index.html', apis=API_DEFS)
34
@@ -229,15 +229,11 @@ def iss_pass():
229
@json
230
def astros():
231
Astros = [
232
- {'name': "Anatoly Ivanishin", 'craft': "ISS"},
233
- {'name': "Takuya Onishi", 'craft': "ISS"},
234
- {'name': "Kate Rubins", 'craft': "ISS"},
235
{'name': "Jing Haipeng", 'craft': "Shenzhou 11"},
236
{'name': "Chen Dong", 'craft': "Shenzhou 11"},
237
{'name': "Sergey Rizhikov", 'craft': "ISS"},
238
{'name': "Andrey Borisenko", 'craft': "ISS"},
239
{'name': "Shane Kimbrough", 'craft': "ISS"},
240
241
242
return {'message': "success", 'number': len(Astros), 'people': Astros}, 200
243
0 commit comments