Team Updates

We created a python script to generate questions that used the NASA image API
We created a python script to generate questions that used the NASA image API
piphi5Matteo Kimura
frombs4importBeautifulSoup
importurllib.request
defsearch_nasa(keywords):
links= []
url="https://nasasearch.nasa.gov/search?utf8=%E2%9C%93&affiliate=nasa&sort_by=&query="
source=urllib.request.urlopen((url+keywords).replace(" ", "+")).read()
soup=BeautifulSoup(source, "html.parser")
articles=soup.find_all('h4', {"class" : "title"})
forarticleinarticles:
links.append(article.find('a')['href'])
returnlinks
piphi5Matteo Kimura

Idea Planning

We have decided to go about solving the isolation problem by creating a collaborative space trivia app!

This app will use API's to gather space images and generate quizzes for users to take. Users will then be paired up with someone else and they can chat (in the app) and work together to answer the  questions.

We believe this helps people practice communication and group living which are 2 tips astronaut Anne McClain has found to be useful for living in confined spaces over a long period of time. As a result, it can help people currently living in isolation.

We also think that this will increase interest in space by promoting learning about space and its fascinating landmarks, concepts, etc.

piphi5Matteo Kimura