SkYSpectra is a weather app build using django and openweathermap API. Web App Link: http://yashagrahari07.pythonanywhere.com/
we need to first create a virtual environment to run our django app.
py -m venv virtualenv
To activate virtual environment:
virtualenv\Scripts\activate.bat
After activating virtual environment, we need to install django in virtual environment.
pip install django
To deactivate virtual environment:
deactivate
After creation of virtual environment and django installation, just clone the repository inside virtual environment.
To run django server:
python manage.py runserver
After running the server, our web app will be successfully run.
This repository does not have django security keys, due to security reasons. Therefore, it will throw error while running.
Since, Till now our project can tell the weather of a city but if the city does not exist then it will throw a error. So further, we are seeking to solve this problem.