FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Python-2/web_programming/nasa_data.py at master · https-github-com-nzysoft/Python-2 · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
https-github-com-nzysoft
/
Python-2
Public
forked from
TheAlgorithms/Python
Notifications
You must be signed in to change notification settings
Fork
1
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Python-2
/
web_programming
/
nasa_data.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
38 lines (28 loc) · 1.11 KB
Breadcrumbs
Python-2
/
web_programming
/
nasa_data.py
Copy path
File metadata and controls
38 lines (28 loc) · 1.11 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
import
shutil
import
requests
def
get_apod_data
(
api_key
:
str
,
download
:
bool
=
False
,
path
:
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"
return
requests
.
get
(
url
,
params
=
{
"api_key"
:
api_key
}).
json
()
def
save_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
=
requests
.
get
(
img_url
,
stream
=
True
)
with
open
(
f"
{
path
}
/
{
img_name
}
"
,
"wb+"
)
as
img_file
:
shutil
.
copyfileobj
(
response
.
raw
,
img_file
)
del
response
return
apod_data
def
get_archive_data
(
query
:
str
)
->
dict
:
"""
Get the data of a particular query from NASA archives
"""
url
=
"https://images-api.nasa.gov/search"
return
requests
.
get
(
url
,
params
=
{
"q"
:
query
}).
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"
])
Back
|
FazBrowse Home
|
New Git URL