Improve your Python programming skills by coding six different Python projects. You will create a web scraping program, a bulk file renamer, a weather program, a countdown timer, a password generator, and a QR code encoder / decoder.
✏️ Course developed by Code With Tomi. Check out his channel:
⭐️ Course Contents ⭐️
(00:00) Intro
(00:37) Web Scraping Program
(13:53) Renaming Bulk Files
(24:54) Getting Weather Information
(33:12) Countdown Timer
(42:11) Password Generator
(53:12) QR Code With Python
Connect With Tomi:
🐦 Twitter:
📄 Newsletter: (and get a python ebook for free)
—
Learn to code for free and get a developer job:
Read hundreds of articles on programming:
And subscribe for new videos on technology every day:
Amazing, thanks a lot !!
Nice, Just finished his Django projects series that was posted a while ago. Will do this later. Thanks!
whats his youtube channel
In second tutorial, you can also use double back slash in directory link.
A raw string would allow the use of single back slash in the directory link.
Thanks so much. Please make more videos like this one.
i like how you go through troubleshooting on camera, super helpful. great course thank you
Thanks a lot for uploading this course.
Well done, your presentations are clear and understandable. Thank you for your efforts. Good job!
Loved this tutorial. Thanks so much Tomi!
This content is such a perfect, Thank you so much
Great tutorial, Just subscribed to his channel!
Hey guys! I am not sure if this only happened to me but if you are on a Windows machine and when you ran the main.py file you encountered an error like ModuleNotFoundError: No module named ‘PIL’ in the last project, then you could fix the problem with installing Pillow: pip install pillow.
Cheers!
Change name
The same issue was happening with me while importing the pyttsx3 module, but I don’t know how suddenly it was automatically fixed after 2-3 days.
came to the comments hoping someone answered this! THANK YOU!
if you don’t want to type all the characters use import string
Great video. Any advice on how to get around 403 errors?
thank you for such a good start in my coding learning .
Awesome video with clear and understandable instructions. Thank you, appreciate it lots! 😄
Hi, nice video.
I came here from another site while searching for project ideas and I saw your weather script.
Just a security advice: do not put your actual API key on a public video or, at least, revoke it before publishing the video. Otherwise you allow people to misuse a key that is registered to your account.
Great tutorial. I really like that you explain everything in detail. Helps me a lot.
Love these tutorials. Great job
hi im using the same program like you(visual studio code) and I’m trying to do the QRcode project and it says (ModuleNotFoundError: No module named ‘qrcode’) what should i do?
Thats the same issue I am having
My timer doesn’t show up when I run the program. I input the amount of time, it waits that long, then prints “timer completed”. The whole “00:00” doesn’t appear. However, when I remove the “, end=”r” ” from the program, the timer appears, but it prints a new timer after every second. Like this:
00:03
00:02
00:01
My code is exactly like yours so why is this happening?