Python 2 quick projects to complete in 1 Hour [Code Included]

preview_player
Показать описание
In this video, you will learn to create 2 projects that are very cool, both will help you to understand writing better projects!

#Python #Projects #Code

Connect with me with:

🔥 Comment below if you want to see more videos in that style

👍 Subscribe to start your Python Developer / DevOps Engineer journey here:

Links:

My Personal website:

Timeline of the video:

00:00 - 30:30 - Project Number 1
31:41 - 01:08:00 - Project Number 2
Рекомендации по теме
Комментарии
Автор

Thanks for this course. It is really helpful!!

TheSoulCatcher
Автор

man... I swear without you I would have never understood Python or OOP concepts as a whole.. you are amazing!

fadymikhaiel
Автор

This guy is a great programmer. Bruh hats of to you. I've just learned oop from fcc by u. You gained a new subscriber for your efforts. Love from Nepal <3

prerit
Автор

Hello all! Those two projects will be very fun to build. My recommendation would be to try to add more features to each one of them by your own in order to become better and better with Python.
What features would you add on both of the projects ?

jimshapedcoding
Автор

excellent project! for those who are green to working from terminal just as me: if you are using power shell (because it is prettier, oh my me), setting an environment variable is $env:api_key="yourkeyhere" - this was the only difficulty I have ran into with this video, and of cours it was not the fault of the teacher :-D but at least I have learned something new about power shell too. Thank you for this fantastic video!

ZsoltPal
Автор

Just found you... really excited to dig into the content and projects

Childne
Автор

To iterate over the lines of a file you have no need in readlines method and making a list of lines. You can just iterate over a file - it's an iterator which gives its lines:

for line in f:
do_something_with(line)

eugene_na_tytrube
Автор

Big 10x for tutorial

Who interesting
for showing line number use enumerate

for index, line in enumerate(lines, 1):
if str_to_find in line:
matched_line_prettified = line.replace(
str_to_find, f"{colors['red']}{str_to_find}{colors['base']}"
)
print(f"{file}: number line:{index} - {matched_line_prettified}")

ulugbeknurjonov
Автор

Greetings Jim, Other simple technique to copy text files from github, is to click on Raw button, then Ctr+s and save the file in the target destination.

imadaliswabian
Автор

The tips and tricks along the way ❤️❤️❤️

kareemmahlees
Автор

Amazing tips along the way! You deserve more subscribers. I just got to know you from your scrapper course. Subscribed!

SpokenEnglishMovie
Автор

I am going to save this video in watch later so that I can watch it after my exams are over.

Edit: I have made all the 2 projects.

techwithrg
Автор

Really awsome content! i learned so much by just shadowing you! It will be nice to have more video but will even bigger project to understand how to see how the structure and how the package eveolves while working on the project

thibo
Автор

Love your videos Jim. It's very nice of you to share your knowledge.

One suggestion in regards to getting the directory path.

I think using os.getcwd() would be more generic than explicitly typing the directory name we want to search inside.


please let me know what you think.

aliali
Автор

Sir, First of all thank *YOU* for such a valuable content. I was searching for Python projects and got this. I am really happy 😊 I tried this by myself. But I have a request to you, could you please make a video on the datetime module?

rabi
Автор

New subscriber here 😊. From your freecodecamp tutorial it allows me to understand OOP easier than before. Thank you for your hardwork. 😊 God bless you always!

natfoodiesmm
Автор

55
78
112

Process finished with exit code 0
This is what my output after running the program, would you please help my resolve that problem, instead of getting 1200, 1200, 2400 lines, Thanks

AsgharShakir
Автор

What a great project 4 beginner. You nailed it Jim...keep up the good work

CyberxploitHausa
Автор

What is the software your using to compile this in?

AlternativeOps
Автор

hey, I cannot get the api using token. it seems like it is expired

RahulThiruthinmelPremnavas