Category: Projects
-
Simple Website
A basic website built with Flask, a Python web framework. When you open it in the browser, it shows a message. You can expand it into blogs, portfolios, or web apps.
-
Weather App (using API)
This project fetches real-time weather data from the internet (using the OpenWeatherMap API). You type a city, and it shows the current temperature and conditions.
-
Password Generator
Generates random strong passwords A tool that generates strong random passwords using letters, numbers, and symbols. You can choose the password length. Security basics (importance of strong passwords).It’s practical—you can actually use this in real life. Using libraries (string, random). Working with lists and strings.
-
Web Scraper
import requestsfrom bs4 import BeautifulSoup def web_scraper():url = “https://quotes.toscrape.com/”response = requests.get(url) Run the scraper web_scraper()
-
Number Guessing Game
Build a simple number guessing game where the program randomly selects a number, and the player has to guess it. You can provide hints like “too high” or “too low.” import random def number_guessing_game():print(“Welcome to the Number Guessing Game!”)print(“I am thinking of a number between 1 and 100.”)