Spaces:
Sleeping
Sleeping
Updated Neo docstring
Browse files
app.py
CHANGED
@@ -13,8 +13,8 @@ from Gradio_UI import GradioUI
|
|
13 |
def get_nasa_neo_data(start_date:str, end_date:str) -> dict:
|
14 |
"""A function to get Near Earth Object (NEO) data from NASA API.
|
15 |
Args:
|
16 |
-
start_date
|
17 |
-
end_date
|
18 |
Returns: The data fetched from the API as a JSON-like dictionary.
|
19 |
"""
|
20 |
root_url = "https://api.nasa.gov/neo/rest/v1/feed?"
|
|
|
13 |
def get_nasa_neo_data(start_date:str, end_date:str) -> dict:
|
14 |
"""A function to get Near Earth Object (NEO) data from NASA API.
|
15 |
Args:
|
16 |
+
start_date: A string representing thestart date of the data to be fetched in.
|
17 |
+
end_date: A string representing the end date of the data to be fetched.
|
18 |
Returns: The data fetched from the API as a JSON-like dictionary.
|
19 |
"""
|
20 |
root_url = "https://api.nasa.gov/neo/rest/v1/feed?"
|