shivam0102005 /
Weather_analysis
π¦οΈ A simple project to analyze weather data using Python and Pandas
Loading repository dataβ¦
harshstrr / repository
π¦οΈ A simple Weather Chatbot built with Flask, OpenWeatherMap API, and a modern animated UI (HTML, CSS, JS).
A tiny, stylish frontend + Flask backend that returns current weather for a city using OpenWeatherMap. Built for local development and quick testing.
Enter a city name in the input box on the page. When the field changes, the frontend calls the Flask API at http://127.0.0.1:5000/weather and shows a small weather summary (temperature, description, humidity, wind).
app.py β Flask backend (exposes /weather).index.html, script.js, style.css β frontend static files..env β store your OpenWeatherMap API key here (not committed).Open PowerShell in the project folder and run:
# create virtual env
python -m venv .venv
# activate
.\.venv\Scripts\Activate.ps1
# install dependencies
pip install flask requests python-dotenv flask-cors
Create or update .env in the project root with your API key:
apikey=YOUR_OPENWEATHERMAP_KEY
Note: The repo already includes a .env placeholder β keep it private.
With the venv active:
python app.py
This starts the Flask API at http://127.0.0.1:5000 (the same base URL used in script.js).
You can open index.html directly in the browser, but using a local HTTP server is more reliable (avoids file:// restrictions):
# serve current folder at http://127.0.0.1:8000
python -m http.server 8000
Then open http://127.0.0.1:8000/index.html in your browser.
Tip: If you want immediate results while typing, change onchange to oninput in index.html or add a keypress listener in script.js.
app.py already enables CORS.5000 and .env has a valid key.Made with Flask + OpenWeatherMap. Style by style.css.
Selected from shared topics, language and repository descriptionβnot editorial ratings.
shivam0102005 /
π¦οΈ A simple project to analyze weather data using Python and Pandas
codersantanu /
π¦οΈ A simple Python weather app that fetches real-time weather data using the OpenWeatherMap API. Learn how to work with APIs, JSON, and requests while building a practical project.
Prem6999 /
π¦οΈ A simple and responsive Weather App built with JavaScript and OpenWeather API, providing real-time temperature, humidity, and forecast data.
VarunBallal-0912 /
Weather App (Python) π¦οΈ A simple Weather App built using Python that fetches real-time weather data from the OpenWeatherMap API. πΉ Features: Fetches live weather data by city name Displays temperature, humidity, wind speed, and weather conditions Built with Python (CLI / Tkinter GUI, depending on your version) Easy to run and customize
maheshmahesh570 /
π¦οΈA simple Weather App built with HTML, CSS, JavaScript, and Python. Users can check the weather by entering a city name, displaying temperature, humidity, and wind speed. The app features a responsive design and a smooth, interactive UI, offering an intuitive user experience for weather updates
faysalalhassn /
π¦οΈ Weather App using Python & Flask A simple web app where users enter a city name and get real-time weather information (temperature, weather condition, and country) using the OpenWeather API. Built with Python, Flask, and HTML. Great for showcasing API usage, web development skills, and clean user interface.