-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.py
More file actions
100 lines (61 loc) · 1.6 KB
/
Copy pathapp.py
File metadata and controls
100 lines (61 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
from flask import Flask, flash, redirect, render_template, request, session
app = Flask(__name__)
@app.route('/')
def index():
return render_template("index.html")
@app.route('/apod')
def apod():
return render_template("apod.html")
@app.route('/earth')
def earth():
return render_template("earth.html")
@app.route('/mars-rover')
def mars_rover():
return render_template("mars.html")
@app.route('/exoplanets')
def exoplanets():
return render_template("exoplanets.html")
@app.route('/epic')
def epic():
return render_template("epic.html")
@app.route('/library')
def lib():
return render_template('library.html')
@app.route('/trek')
def trek():
return render_template('trek.html')
@app.route('/mars-weather')
def mars_weather():
return render_template('mars_weather.html')
@app.route('/live')
def live():
return render_template("live_iss.html")
@app.route('/neows')
def neows():
return render_template("neows.html")
@app.route('/neob')
def neob():
return render_template("neob.html")
@app.route('/neof')
def neof():
return render_template("neof.html")
@app.route('/tracker')
def tracker():
return render_template("tracker.html")
@app.route('/sbdb')
def sbdb():
return render_template("sbdb.html")
@app.route('/techport')
def techport():
return render_template("techport.html")
@app.route('/spectrum')
def spectrum():
return render_template("spectrum.html")
@app.route('/acknowledgement')
def acknowledgement():
return render_template("acknowledgements.html")
@app.route ('/aladin')
def aladin():
return render_template("aladin.html")
if __name__ == '__main__':
app.run(debug=True)