Member-only story
3 Python projects anyone can build

Welcome back! Python is an awesome programming language with tons of capability, but you maybe a beginner of Python and want to see some basic projects you can build out, so let’s take a look at some of my favorite Python projects anyone can build. First off, make sure to have Python installed on your machine, if not, you can always run most of these projects on Google Colab, here is a link to that:
With that basic introduction out of the way, let’s get into some of these projects!
Scraping Data From Youtube
Starting off we have a basic web scraping project with Youtube, this project is great for beginners because we get to see the basic structure of scraping data, but also storing / displaying that data to a user, here is a link to this full tutorial:
In this project we use a few different packages that are very popular for Python development, we use: Selenium (a web scraping package), Pandas (a package that helps with data manipulation and data analysis), as well as some built in Python modules as well. If you’re a beginner Python developer, this is a great Python project that you can build out in a few lines of code.
Build GUI’s Easily

Next up we have GUI building with Python! GUI’s (short for Graphical User Interface) are essentially the front-end to a piece of software, so being able to build out a GUI of a project is super powerful. This is easily one of my favorite projects to build out, check out the link below to access the full tutorial: