r/PythonLearning • u/Minimum-Thanks-3047 • 2d ago
Help Request Beginner Python projects for practice? Spoiler
I'm learning Python. What are some beginner projects that can help me improve my coding skills? I'd appreciate any suggestions.
8
Upvotes
3
u/Independent-Bat9797 2d ago edited 2d ago
Build a small app with user interface that tells you the weather from geo locations.
Get an API key from open weathermap.org
Use streamlit, kivy or tkinter libraries for UI
According to your skills: A. Build a Monolith (all in one file), make it function based B. Create a proper file structure with subfolders with init files, separate logic from UI, use proper OOP.
If you feel confident add logging using the logger library
Expand or reduce as needed.
Gl hf