This repository was archived by the owner on May 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.py
189 lines (169 loc) · 7.49 KB
/
app.py
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
import requests
from flask import Flask, render_template, url_for, request, redirect
from grabber import detect
from home import home
from nasa_apod import apod
app = Flask(__name__)
data = home()
launch = data[0]
launch1 = data[1]
launch2 = data[2]
launch3 = data[3]
launch4 = data[4]
launch5 = data[5]
NASA = apod()
@app.route('/')
def index():
return render_template('index.html', launch = data[0], apod = NASA, title="Space Control Pro")
@app.route('/more')
def more():
return render_template('more.html')
@app.route('/upcoming')
def upcoming():
return render_template('upcoming.html', data = data, title="Upcoming Launches")
@app.route('/launches', methods=['POST', 'GET'])
def launches():
if request.method == 'POST':
launch_requested = request.form['content']
launchURL = 'https://launchlibrary.net/1.3/launch/' + launch_requested
launchReq = requests.get(launchURL).json()
index = launchReq["count"] - 1
data = []
while index > 0 :
name = launchReq["launches"][index]["name"]
date = launchReq["launches"][index]["net"]
location = launchReq["launches"][index]["location"]["name"]
if 'People\'s Republic of China' in location:
location = location.replace('People\'s Republic of China', 'China')
address = index + 1
try:
desc = str(launchReq["launches"][index]["missions"][0]["description"])
except:
desc = 'Data not found'
descShort = desc[:200]
if len(descShort) > 199:
descShort = descShort + '...'
mapCoordinates = [launchReq["launches"][index]["location"]["pads"][0]['latitude'], launchReq["launches"][index]["location"]["pads"][0]['longitude']]
try:
typeOfMission = launchReq["launches"][index]["missions"][0]["typeName"]
except:
typeOfMission = ''
try:
status = launchReq["launches"][index]["status"]
except:
status = ''
if status != '':
statusUrl = 'https://launchlibrary.net/1.3/launchstatus/'+ str(status)
statusReq = requests.get(statusUrl).json()
status = statusReq["types"][0]["description"]
agency = launchReq["launches"][index]["lsp"]
locationURLs = launchReq["launches"][index]["location"]["pads"][0]["wikiURL"]
rocket = launchReq["launches"][index]["rocket"]
liveStream = launchReq["launches"][index]["vidURLs"]
if liveStream != []:
liveStream = 'https://www.youtube.com/embed/' + liveStream[0].split('=')[1]
launch = [address, name, location, desc, descShort, mapCoordinates, typeOfMission, date, status, agency, locationURLs, rocket, liveStream]
index = index - 1
data.append(launch)
return render_template('browser.html', data = data)
else:
suggested = home()
suggested = suggested[0]
return render_template('browser.html', data = ['browse'], suggested = suggested)
@app.route('/1')
def one():
statusUrl = 'https://launchlibrary.net/1.3/launchstatus/'+ str(launch[8])
statusReq = requests.get(statusUrl).json()
status = statusReq["types"][0]["description"]
state = str(launch[2]).split(',')
state = state[-1]
agencyID = launch[9]["type"]
agencyUrl = 'https://launchlibrary.net/1.3/agencytype/' + str(agencyID)
agencyReq = requests.get(agencyUrl).json()
agencyType = agencyReq["types"][0]["name"]
agencyInfoUrl = launch[9]["wikiURL"]
agencyInfo = detect(agencyInfoUrl)
return render_template('launch.html', launch=launch, status = status, state = state, agency= [agencyType, agencyInfo], rocket = launch[11])
@app.route('/2')
def two():
launch = launch1
statusUrl = 'https://launchlibrary.net/1.3/launchstatus/'+ str(launch[8])
statusReq = requests.get(statusUrl).json()
status = statusReq["types"][0]["description"]
state = str(launch[2]).split(',')
state = state[-1]
agencyID = launch[9]["type"]
agencyUrl = 'https://launchlibrary.net/1.3/agencytype/' + str(agencyID)
agencyReq = requests.get(agencyUrl).json()
agencyType = agencyReq["types"][0]["name"]
agencyInfoUrl = launch[9]["wikiURL"]
agencyInfo = detect(agencyInfoUrl)
return render_template('launch.html', launch=launch, status = status, state = state, agency= [agencyType, agencyInfo], rocket = launch[11])
@app.route('/3')
def three():
launch = launch2
statusUrl = 'https://launchlibrary.net/1.3/launchstatus/'+ str(launch[8])
statusReq = requests.get(statusUrl).json()
status = statusReq["types"][0]["description"]
state = str(launch[2]).split(',')
state = state[-1]
agencyID = launch[9]["type"]
agencyUrl = 'https://launchlibrary.net/1.3/agencytype/' + str(agencyID)
agencyReq = requests.get(agencyUrl).json()
agencyType = agencyReq["types"][0]["name"]
agencyInfoUrl = launch[9]["wikiURL"]
agencyInfo = detect(agencyInfoUrl)
return render_template('launch.html', launch=launch, status = status, state = state, agency= [agencyType, agencyInfo], rocket = launch[11])
@app.route('/4')
def four():
launch = launch3
statusUrl = 'https://launchlibrary.net/1.3/launchstatus/'+ str(launch[8])
statusReq = requests.get(statusUrl).json()
status = statusReq["types"][0]["description"]
state = str(launch[2]).split(',')
state = state[-1]
agencyID = launch[9]["type"]
agencyUrl = 'https://launchlibrary.net/1.3/agencytype/' + str(agencyID)
agencyReq = requests.get(agencyUrl).json()
agencyType = agencyReq["types"][0]["name"]
agencyInfoUrl = launch[9]["wikiURL"]
agencyInfo = detect(agencyInfoUrl)
return render_template('launch.html', launch=launch, status = status, state = state, agency= [agencyType, agencyInfo], rocket = launch[11])
@app.route('/5')
def five():
launch = launch4
statusUrl = 'https://launchlibrary.net/1.3/launchstatus/'+ str(launch[8])
statusReq = requests.get(statusUrl).json()
status = statusReq["types"][0]["description"]
state = str(launch[2]).split(',')
state = state[-1]
agencyID = launch[9]["type"]
agencyUrl = 'https://launchlibrary.net/1.3/agencytype/' + str(agencyID)
agencyReq = requests.get(agencyUrl).json()
agencyType = agencyReq["types"][0]["name"]
agencyInfoUrl = launch[9]["wikiURL"]
agencyInfo = detect(agencyInfoUrl)
return render_template('launch.html', launch=launch, status = status, state = state, agency= [agencyType, agencyInfo], rocket = launch[11])
@app.route('/6')
def six():
launch = launch5
statusUrl = 'https://launchlibrary.net/1.3/launchstatus/'+ str(launch[8])
statusReq = requests.get(statusUrl).json()
status = statusReq["types"][0]["description"]
state = str(launch[2]).split(',')
state = state[-1]
agencyID = launch[9]["type"]
agencyUrl = 'https://launchlibrary.net/1.3/agencytype/' + str(agencyID)
agencyReq = requests.get(agencyUrl).json()
agencyType = agencyReq["types"][0]["name"]
agencyInfoUrl = launch[9]["wikiURL"]
agencyInfo = detect(agencyInfoUrl)
return render_template('launch.html', launch=launch, status = status, state = state, agency= [agencyType, agencyInfo], rocket = launch[11])
@app.route('/credits')
def credits():
return render_template('credits.html')
@app.route('/apod')
def apod():
return render_template('apod.html', apod = NASA)
if __name__ == "__main__":
app.run(debug=False)