Created
March 21, 2020 04:26
-
-
Save aambrioso1/935cd7156eeea64c8af75232253365cb to your computer and use it in GitHub Desktop.
Erika_Lauchtime.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Erika Ambrioso | |
[email protected] | |
Launch Tracker | |
""" | |
# These are the libraries used by the program. | |
import json, requests, sys | |
import ui | |
print("Welcome to my launch tracker\n") | |
url = "https://fdo.rocketlaunch.live/json/launches/next/5" | |
response = requests.get(url) | |
response.raise_for_status() | |
data = json.loads(response.text) | |
d = data['result'] | |
i = 1 | |
for ele in d: | |
#print(ele) | |
print(ele['name']) | |
d1 = ele['name'] | |
provider = ele['provider'] | |
print(provider['name']) | |
vehicle = ele['vehicle'] | |
print(vehicle['name']) | |
location = ele['pad'] | |
location = location['location'] | |
print(location['name']) | |
mission = ele['launch_description'] | |
print(mission) | |
if ele['weather_summary']: | |
print('The weather is predicted to be: ') | |
print(ele['weather_summary']) | |
print('\n') | |
""" | |
def view(sender): | |
v = sender.superview | |
v['label2'] | |
""" | |
v = ui.load_view('launch') #.present('sheet') | |
v['label1'].text = d[0]['launch_description'] | |
v['label2'].text = d[1]['launch_description'] | |
v['label3'].text = d[2]['launch_description'] | |
v['label4'].text = d[3]['launch_description'] | |
v['label5'].text = d[4]['launch_description'] | |
v.present('sheet') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment