Python HOW TO structure a Beginner OR Advanced Projects ?

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 ส.ค. 2024

ความคิดเห็น • 129

  • @ebitdaddyca3676
    @ebitdaddyca3676 ปีที่แล้ว +7

    This is BY FAR one of the best videos out there. My project was getting bigger and bigger and I was getting lost with no knowledge in this field and how to organize an app/project.
    Thank you SO much my friend!

    • @jimshapedcoding
      @jimshapedcoding  ปีที่แล้ว

      Glad it helped you! Appreciate this comment

  • @malgindesilva2758
    @malgindesilva2758 2 ปีที่แล้ว +31

    Very well explained the interconnection. A gem for a beginner/intermediate level Pythonist. Thanks for your time and effort.

  • @maxrodriguez643
    @maxrodriguez643 2 ปีที่แล้ว +3

    This video just made my brain click to how projects are organized in OOP
    I always wondered about this specific thing, thank you

  • @jimshapedcoding
    @jimshapedcoding  3 ปีที่แล้ว +29

    Very important point before you watch the whole video, there are millions of ways to structure a project,
    and the examples I am showing are not the absolute standards of how a project should look like. But the two examples I show are great examples to get going!
    Enjoy watching

    • @toolate6971
      @toolate6971 3 ปีที่แล้ว

      This video is more about writing a script that deals with Prime numbers and far less about program structure.

    • @Zappabain
      @Zappabain 2 ปีที่แล้ว +1

      @@toolate6971 it has been greatly informative to me, after hours of reading official docs etc and not having a clear idea of it. For beginners seeing that code grow and be refactor is very useful to. But I agree I wouldn’t have explained the prime number functions at all.

  • @Sycord
    @Sycord 2 ปีที่แล้ว +10

    This was an amazing explanation, I just would avoid * for imports.

    • @raulmorenobello7202
      @raulmorenobello7202 2 ปีที่แล้ว +4

      That should have been pointed to newbies like ne, yes. In fact I’ve read the best practice may be to
      Import module as m
      And use m.function for every function, class, variable etc the code uses, so it’s always clear to which module it belongs to.

  • @fabianstargalla
    @fabianstargalla ปีที่แล้ว +5

    Thank you very much for your video ❤
    For me as a beginner it was extremely useful as I had already learnt most of what native Python has to offer but I was never sure what the correct or rather said better way to structure a project would be 🤓

    • @jimshapedcoding
      @jimshapedcoding  ปีที่แล้ว +1

      Thanks a lot for the comment! Glad it helped you

  • @nothingiseverperfect
    @nothingiseverperfect 2 ปีที่แล้ว +6

    Sir, this was INCREDIBLY USEFUL. This deserves more views.
    THANK YOU SO MUCH

    • @jimshapedcoding
      @jimshapedcoding  2 ปีที่แล้ว

      Wonderful to read such a comment. Hope you will enjoy other videos here as well!

  • @xavierbourguignon37220
    @xavierbourguignon37220 7 หลายเดือนก่อน +1

    A constant isn’t a variable. A constant is constant, it doesn’t change. A variable as its name indicates can change, it is variable.

  • @47_wan
    @47_wan ปีที่แล้ว +1

    It's a great video of introducing Python project structure. : )
    But ... I have to point a small mistake, that is "for n in range(start, finish)" where the number denoted by the variable 'finish' won't be checked.

  • @BirdmanPRRT
    @BirdmanPRRT 2 หลายเดือนก่อน +1

    Great video, thanks for sharing!

  • @abdelghafourfid8216
    @abdelghafourfid8216 ปีที่แล้ว

    Small note, we can simplify the is_prime function like so:
    def is_prime(num):
    if num == 1:
    return True
    for n in range(2, num):
    if num % n == 0:
    return False
    return true
    And even more, if you want to make it shorter:
    def is_prime(num):
    if num == 1:
    return True
    return all(num % n for n in range(2, num))

    • @jimshapedcoding
      @jimshapedcoding  ปีที่แล้ว

      Thanks for this, it really shortens the code ;)

    • @abdelghafourfid8216
      @abdelghafourfid8216 ปีที่แล้ว

      Hi, thanks for reply and the great content, here is a one liner too (less readable tho) :
      def is_prime(num) :
      return num == 1 or all(num % n for n in range(2, num)

  • @kevorkkeuchkerian1648
    @kevorkkeuchkerian1648 6 หลายเดือนก่อน

    Thank you so much for the video. I was really stuck as to how to structure a project and it was great help!!

    • @jimshapedcoding
      @jimshapedcoding  6 หลายเดือนก่อน

      Glad it was helpful thanks!

  • @gustavoramirez7889
    @gustavoramirez7889 3 ปีที่แล้ว +2

    Awesome! Love to see this coming out as video after asking for it :) Let's give a LIKE first, now lets learn something!

  • @TheRastaDan
    @TheRastaDan 2 ปีที่แล้ว +2

    Great, this is really something other Python tutorials tend to ignore. Coming from Java, with its strict structure, I was pretty lost, when my python files cracked the 500 lines of code.
    This will help me alot cleaning up the mess of spaghetti code in my recent project.

    • @jimshapedcoding
      @jimshapedcoding  2 ปีที่แล้ว

      Glad it helped you, thanks a lot for the kind words

  • @dennis2599
    @dennis2599 3 ปีที่แล้ว +3

    This vide covered the infomation I needed. Thanks :). Ah yeah and btw, what plugin do you use for the code highlightening?

    • @jimshapedcoding
      @jimshapedcoding  3 ปีที่แล้ว +1

      Glad it helped! It's in pycharm schemes called monokai

  • @EdwardVarner
    @EdwardVarner ปีที่แล้ว

    Well this was exactly what I needed in my life!

  • @Daviddeppe
    @Daviddeppe 7 หลายเดือนก่อน

    Excellent explanation! Enjoy the well-earned sub! :)

  • @svenman2139
    @svenman2139 2 ปีที่แล้ว +1

    Awesome video, exactly what I was looking for. Thank you :)

  • @lucibright9331
    @lucibright9331 2 ปีที่แล้ว +1

    1 isn't prime so ur code has a bug ;)
    Thanks for the tutorial btw, you brighted my day when you said that there isn't a clear standard, bcs that gives me freedom to come up with my own preference.
    The early suggestions are perfect for getting started, I'll edit when I get to the advanced projects' ones lol.
    Edit: quite useful, just still didn't found what im looking for, imports are so messy

    • @jimshapedcoding
      @jimshapedcoding  2 ปีที่แล้ว +2

      Yep should've eliminate the 1 before getting in to the logic of it.
      Advanced could look a bit too much lines of imports, but it's still worth the mess of import lines as long as you know that those classes (or the helping functions) could reach to hundreds of lines of code.

    • @raulmorenobello7202
      @raulmorenobello7202 2 ปีที่แล้ว +1

      I think you may be interested in the __all__ word for __init__.py files:
      " if the __init__.py file in the package directory contains a list named __all__, it is taken to be a list of modules that should be imported when the statement
      from import *
      is encountered."
      It also works for modules.
      BTW, I had sent an answer with a link to best practices for module usage and it has been deleted :(

  • @jaypdevaney
    @jaypdevaney 3 ปีที่แล้ว +3

    This is an excellent video. Very well explained. Thank you!

    • @jimshapedcoding
      @jimshapedcoding  3 ปีที่แล้ว

      Hey Jay! You're very welcome, please feel free to share it with more people :)

  • @frankhuang5095
    @frankhuang5095 3 ปีที่แล้ว +2

    Such a wonderfully made tutorial! Thanks!

    • @jimshapedcoding
      @jimshapedcoding  3 ปีที่แล้ว

      Thanks! feel free to share it with more people :)

  • @VectorRoblox
    @VectorRoblox ปีที่แล้ว

    Very nice! This is what I was looking for. Thanks

  • @vinayak254
    @vinayak254 5 หลายเดือนก่อน

    Thank you jim. It is a great video

  • @SkegAudio
    @SkegAudio 2 ปีที่แล้ว +1

    Hey man, great video! Btw how did you set up your terminal to look like that? It looks awesome!

    • @jimshapedcoding
      @jimshapedcoding  2 ปีที่แล้ว +1

      Hey Ruben, yep looks cool :) You can download MobaXterm which is an advanced utility to manage local terminal and remote connections to other servers. Very helpful

  • @NagasakiNightmare
    @NagasakiNightmare 11 หลายเดือนก่อน

    Thank you for this. I really needed this.

  • @nikhil182
    @nikhil182 2 ปีที่แล้ว

    Thank you Jim🍻 Project structure for advanced project was really useful💯

    • @jimshapedcoding
      @jimshapedcoding  2 ปีที่แล้ว +1

      Amazing, please share with people that it might be useful for them! :)

  • @lotansuid9604
    @lotansuid9604 3 ปีที่แล้ว +2

    grate video! thats what i look for

  • @Kennethlumor
    @Kennethlumor ปีที่แล้ว

    Sir please the way you create your packages i also did so but if i import from package a whiles i'm in b i get ModuleNotFoundError: No module named. please i'm using vs code

  • @Casanova_999
    @Casanova_999 ปีที่แล้ว +1

    Finally now I can stop writing 1 long ass file with 1 function and actually make it readable... THANK YOU.

  • @senthilkumarpalanisamy365
    @senthilkumarpalanisamy365 3 ปีที่แล้ว +1

    Excellent clear cut explanation, thanks for doing this 👍

    • @jimshapedcoding
      @jimshapedcoding  3 ปีที่แล้ว

      Sure you welcome! Feel free to share it with more people :)

  • @sigmarepublic7144
    @sigmarepublic7144 ปีที่แล้ว

    Dude I’m all in a messy af project! I need to start fresh! How to do that?

  • @arnavmukherjee5395
    @arnavmukherjee5395 ปีที่แล้ว

    Very nicely explained. Many Thanks :)

  • @tewelebrhane6046
    @tewelebrhane6046 2 ปีที่แล้ว

    You are the best Jim. Please could you come up with videos related with Civil Engineering? since most of the videos are related games or others. Keep it up Jim again you are the best of all.

    • @jimshapedcoding
      @jimshapedcoding  2 ปีที่แล้ว

      Thanks a lot! Will do, new videos to come

    • @tewelebrhane6046
      @tewelebrhane6046 2 ปีที่แล้ว

      @@jimshapedcoding Can't wait . I am really excited.

  • @Jadushnew
    @Jadushnew 9 หลายเดือนก่อน

    What Theme are you using in PyCharm?

  • @revolution77N
    @revolution77N ปีที่แล้ว

    Thanks man! very helpful. I like the accent too :)

    • @jimshapedcoding
      @jimshapedcoding  ปีที่แล้ว

      Haha thanks a lot hope you'll enjoy more videos in my channel!

  • @iaroslavdavydiak6439
    @iaroslavdavydiak6439 9 หลายเดือนก่อน

    Awesome explanation! 🔥🔥🔥

  • @salarghaffarian9745
    @salarghaffarian9745 2 ปีที่แล้ว

    Thanks for this great instructive Video!

  • @science9181
    @science9181 2 ปีที่แล้ว

    Very well explained with perfect example. Thank you very much!
    I was wondering - what happens if you change the folder name of the package - then you would have to change every "import" command, right? Isn't there another way?

    • @jimshapedcoding
      @jimshapedcoding  2 ปีที่แล้ว +3

      Yes, exactly. But if you do this with Pycharm it will automatically suggest you to edit all the "imports"

  • @lucaslannes4004
    @lucaslannes4004 ปีที่แล้ว

    Dude! Awesome! Ty so much.

  • @MrNess2911
    @MrNess2911 ปีที่แล้ว

    Really helpful! Subscribed!

    • @jimshapedcoding
      @jimshapedcoding  ปีที่แล้ว

      Thanks for the sub! Hope you'll find more useful content on my channel!

  • @munivoltarc
    @munivoltarc 6 หลายเดือนก่อน

    give us a notes or a pdf or a ppt, to learn this subject of organize the project or programming in python

  • @ZinzinsIA
    @ZinzinsIA 2 ปีที่แล้ว

    Great explanation thank you very much. Just a little question. Which terminal or console do you use ? when I type tree in PyCharm terminal, it only sees the .idea directory and not the files inside my directory. I'd like to have the same printing as you but I don't know how to do. Thank you !

    • @jimshapedcoding
      @jimshapedcoding  2 ปีที่แล้ว

      Hey Geoffrey, no problem. Please share with other people if possible :)
      You can watch my short video, it will explain how to use the Monokai theme of Pycharm, here is the link
      th-cam.com/users/shortsYlK3oLTp53E

  • @Rieske1969
    @Rieske1969 3 ปีที่แล้ว

    Thank you for the explanation. import or from ... import was quite confusing

  • @MrChatmoon
    @MrChatmoon 2 ปีที่แล้ว

    Excellent

  • @fabiomagrotti2596
    @fabiomagrotti2596 2 ปีที่แล้ว

    this is not the case but what if Email package needs anything from the Prime package and viceversa? can you just import email.whatever in prime.py and prime.whatever in email.py?

    • @jimshapedcoding
      @jimshapedcoding  2 ปีที่แล้ว

      Hey there Fabio. Not exactly the case because you will face circular import

  • @verbranntenetzhaut
    @verbranntenetzhaut 2 ปีที่แล้ว

    this video was so good thank you very much!!

  • @inteligenciaartificiuau
    @inteligenciaartificiuau 7 หลายเดือนก่อน

    Nice! Thanks!

  • @craigleppan7164
    @craigleppan7164 2 ปีที่แล้ว

    Awesome: dont get the Classes yet but the structure is good
    Thanks

  • @bahdev1324
    @bahdev1324 3 ปีที่แล้ว

    Great info....Jim

  • @blanky_nap
    @blanky_nap 2 ปีที่แล้ว

    Great explanation! One question: if i import a class from a module which is in the same folder as the target module (like constants and helpers) why should I still refer to a folder (package) like prime.helpers and can't use helpers directly?

    • @jimshapedcoding
      @jimshapedcoding  2 ปีที่แล้ว +1

      Hey Dmytro, good question and thanks for following the entire video! That's a possibility, but just improves the readability if in the future you'll import more "helpers" from other packages, so the fact you specify the parent module makes it more understandable what you import

    • @blanky_nap
      @blanky_nap 2 ปีที่แล้ว

      @@jimshapedcoding got it. Thanks!

  • @heinrichdj
    @heinrichdj 3 ปีที่แล้ว

    Great video,thanks. What theme are you using in Pycharm?

    • @jimshapedcoding
      @jimshapedcoding  3 ปีที่แล้ว

      Thanks! It's called Monokai should be built-in in Pycharm Community version

  • @lunastela4387
    @lunastela4387 2 ปีที่แล้ว

    verry informative , that helped me alot : )

  • @cprn.
    @cprn. 3 ปีที่แล้ว

    Beginner question. Taking simple project up a notch I'm trying to separate strategies from creatures and I'm lost. Imagine files structure like `/mygame/strategies/voice/{abstract_voice,meow,quack,talk}.py` alongside of `/mygame/creatures/{abstract_creature,cat,duck,human}.py`. I want to type hint `AbstractVoice` in a `@voice_strategy.setter` of `AbstractCreature` but how do I introduce this composition in a sensible manner? How do I make the duck quack, so to speak? If I add `from mygame.strategies.voice import AbstractVoice` in `creatures/abstract_creature.py` I can't re-use creatures + strategies in a package with a different name because this is literally a named package import. But if I replace this with a relative import I get "attempted relative import beyond top level package" when e.g. trying to test just the sub-package. I tried that with and without `__init__.py` files because you don't need them since python3.3. Python is unintuitive mess whenever I try to do anything slightly more complicated than following tutorials.

    • @vx319
      @vx319 2 ปีที่แล้ว

      Ask stack overflow that’s too much for a TH-cam comment

    • @cprn.
      @cprn. 2 ปีที่แล้ว

      @@vx319 Nah, it's an old comment - it can be hacked together badly with `__init__.py` files but my question is how do do it without them and the answer for that is: "can't be done in python because it's fucked up and authoritative".

    • @vx319
      @vx319 2 ปีที่แล้ว

      @@cprn. couldn’t you just do an import as and then make it a slightly different name or am I misunderstanding

  • @anonymot
    @anonymot ปีที่แล้ว

    Brilliant, keep going

  • @harisai-edb
    @harisai-edb ปีที่แล้ว

    very well explained

  • @LuckyHaboo
    @LuckyHaboo 2 ปีที่แล้ว

    if there is a data base "SQLite" then where should we put it? Main_dir or sub_dir

    • @raulmorenobello7202
      @raulmorenobello7202 2 ปีที่แล้ว

      I’d say in it’s own subdir, at least if it has more than one file (and it probably should have at least a constants.py file, for example for the connection strings for the database so they are not hardcoded lost between the code of the module.

  • @mysteriousXsecret
    @mysteriousXsecret 2 ปีที่แล้ว

    1 is not prime tho

  • @stevehageman6785
    @stevehageman6785 8 หลายเดือนก่อน

    Thanks. :-)

  • @sumanabiswas9096
    @sumanabiswas9096 ปีที่แล้ว

    Fantastic information

  • @harrisjeong3999
    @harrisjeong3999 2 ปีที่แล้ว

    Thanks for this great video! I have one quick question as a beginner. Why did you make a class and put “calculate prime” function in the class? What would be the benefit of making class instead of leaving it as functions?

    • @jimshapedcoding
      @jimshapedcoding  2 ปีที่แล้ว +2

      Hey Harris, you'll face the benefits as the program grows. Basically, the sign for creating a class should be once you start to have the same parameters for different functions. It's more efficient and more readable.

  • @Iqbalsharib4
    @Iqbalsharib4 2 ปีที่แล้ว

    How to do it using OOPS?

    • @jimshapedcoding
      @jimshapedcoding  2 ปีที่แล้ว

      In the advanced part it is considered OOP :)

  • @powergladius
    @powergladius 11 หลายเดือนก่อน

    1 is not prime

  • @benwright1988
    @benwright1988 3 ปีที่แล้ว

    Brilliant video thank you

  • @a7medmostafaabuhatab
    @a7medmostafaabuhatab 2 ปีที่แล้ว

    Wow

  • @CleidsonMachadoDeveloper
    @CleidsonMachadoDeveloper 3 ปีที่แล้ว

    Thanks a lot!

  • @systemtrader1
    @systemtrader1 3 ปีที่แล้ว

    Super Video!!!

  • @krishj8011
    @krishj8011 2 ปีที่แล้ว

    nice tutorial..

  • @hakimmitiche5447
    @hakimmitiche5447 3 หลายเดือนก่อน

    That was usefull

  • @patrykkuniczak2516
    @patrykkuniczak2516 3 ปีที่แล้ว

    How plugin for coloring a words you using?

    • @jimshapedcoding
      @jimshapedcoding  3 ปีที่แล้ว +1

      There are a lot of plugins in mobaXterm that you can use. Generally if you use linux I recommend it. If you own a windows 10 machine that Windows Terminal is what you need (will publish a video for the best setups on that tool soon)

    • @patrykkuniczak2516
      @patrykkuniczak2516 3 ปีที่แล้ว

      @@jimshapedcoding Yeah, i using a Win 10, i would like to learn linux in the near future

  • @yoyokoko5153
    @yoyokoko5153 2 ปีที่แล้ว

    great stuff

    • @jimshapedcoding
      @jimshapedcoding  2 ปีที่แล้ว

      Thanks so much, please share if you can with people :)

  • @roopakaranam369
    @roopakaranam369 ปีที่แล้ว

  • @UlvicanKahya
    @UlvicanKahya 2 ปีที่แล้ว

    Man, your accent is inarguably Turkish. I'm sure you're Turkish. Are you Turkish? 😄

    • @Kay-qg1vn
      @Kay-qg1vn 2 ปีที่แล้ว

      no he is god-sent 😄

  • @toolate6971
    @toolate6971 3 ปีที่แล้ว

    Although I can appreciate your effort, please change the title of your video. This is not about packaging Python projects. Its more about building a Python script using functions, classes and variables.

    • @malgindesilva2758
      @malgindesilva2758 2 ปีที่แล้ว

      It is not packaging. It is structuring python project :)

  • @wznzgq1354
    @wznzgq1354 9 หลายเดือนก่อน

    thank you