After having to travel several times across the globe, it can be tough to navigate the documentation hassle that comes with crossing borders. Therefore, we decided to develop a website with over 100+ destinations that can quickly provide all the legal information you would need for you trip along with useful additional data as well as what to expect to spend on your trip for an enhanced user experience.
Picture this, you want to travel abroad, but you're just not too sure about what would be the best country given your budget. Additionally you have not considered visa requirements, requirements that may make some destinations impossible. Geogo is here to help users navigate this tricky proccess eliminating the worst parts of planning a trip.
With a lot of caffeine and locking in jokes we persevered to bring Geogo to what it is today by using several common web development techniques along with past knowledge in jss, html, and django. Like any website, a frontend was constructed by using jss, html, and css. We next developed the backend of our code, where a lot of data parsing and error handling was developed for Geogo.
Parsing flight data from Google Flights API proved to be harder than expected. In addition, crash-proofing our code also took an unexpected large amount of time. Prior to picking a coding topic, there was also a large amount of time spent deciding which topic we were going to be coding this weekend.
Geogo is able to simplify travel planning worldwide. With comprehensive database and intuitive interface we can proudly state that the user experience is as enhanced as it can be.
We learned new methods for parsing large data sets from APIs, data acquisition, and of course we further enhanced our development capabilities.
We hope to be able to extend our list of countries, airports, enhance our API call response time, and also make the results page much more responsive and attractive. Another major issue is the limit we currently have on the number of API calls in a month, which prevents it from making the app scalable. We need to look for better API endpoints which have no limits on calls.
pip install google-search-results
pip install openai
pip install -q -U google-generativeai
pip install django
pip install requests
- Create you apiKeys.txt file within the
geogo/geogobackend/geogo/api
folder - Generate API keys for
- Gemini
- SerpAPI
- OpenAI
- Note that OpenAI's API charges you a small fee with each API call, so make sure you keep this in mind if you intend on iterating the API call a lot of times.`
- Write your API keys in the format below within "apiKeys.txt"
serpapi,xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx openai,xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx gemini,xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
- Replace the string of x's with the respective API Key
- Within the terminal navigate to
geogo/geogobackend
- Type
python3 manage.py runserver
- Then go to the following url: 127.0.0.1:8000/geogo to see the project!
- Please note that this link will only work when your local Django server is already running