A simple Flask-based web application to fetch and display current weather information for any city using the Weatherbit API.
- Search for current weather by city name
- Fetches real-time weather data from Weatherbit API
- Lightweight, responsive HTML interface
- Built with Python, Flask, and Jinja2 templates
git clone https://github.com/joise-s-arakkal/Weather-App.git
cd Weather-Apppython -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activatepip install -r requirements.txtCreate a .env file in the root directory with the following content:
WEATHER_API_KEY=your_weatherbit_api_key_here๐ You can obtain your free API key from weatherbit
python app.pyVisit http://localhost:5050 in your browser.
๐ Made with โค๏ธ using Flask and Weatherbit API