Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 51k
Expand file tree
/
Copy pathnasa_data.py
More file actions
Latest commit
43 lines (33 loc) · 1.14 KB
/
Copy pathnasa_data.py
File metadata and controls
43 lines (33 loc) · 1.14 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
# /// script
# requires-python = ">=3.13"
# dependencies = [
# "httpx",
# ]
# ///
importhttpx
defget_apod_data(api_key: str) ->dict:
"""
Get the APOD(Astronomical Picture of the day) data
Get your API Key from: https://api.nasa.gov/
"""
url="https://api.nasa.gov/planetary/apod"
returnhttpx.get(url, params={"api_key": api_key}, timeout=10).json()
defsave_apod(api_key: str, path: str=".") ->dict:
apod_data=get_apod_data(api_key)
img_url=apod_data["url"]
img_name=img_url.split("/")[-1]
response=httpx.get(img_url, timeout=10)
withopen(f"{path}/{img_name}", "wb+") asimg_file:
img_file.write(response.content)
delresponse
returnapod_data
defget_archive_data(query: str) ->dict:
"""
Get the data of a particular query from NASA archives
"""
url="https://images-api.nasa.gov/search"
returnhttpx.get(url, params={"q": query}, timeout=10).json()
if__name__=="__main__":
print(save_apod("YOUR API KEY"))
apollo_2011_items=get_archive_data("apollo 2011")["collection"]["items"]
print(apollo_2011_items[0]["data"][0]["description"])