Python HOW TO structure a Beginner OR Advanced Projects ?

Поділитися
Вставка
  • Опубліковано 28 вер 2024

КОМЕНТАРІ • 129

  • @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

  • @fabianstargalla
    @fabianstargalla 2 роки тому +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  2 роки тому +1

      Thanks a lot for the comment! Glad it helped you

  • @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.

  • @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.

  • @malgindesilva2758
    @malgindesilva2758 2 роки тому +31

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

  • @xavierbourguignon37220
    @xavierbourguignon37220 8 місяців тому +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.

  • @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

  • @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

  • @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!

  • @kevorkkeuchkerian1648
    @kevorkkeuchkerian1648 7 місяців тому

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

  • @EdwardVarner
    @EdwardVarner Рік тому

    Well this was exactly what I needed in my life!

  • @sigmarepublic7144
    @sigmarepublic7144 Рік тому

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

  • @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

  • @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 :)

  • @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"

  • @Jadushnew
    @Jadushnew 10 місяців тому

    What Theme are you using in PyCharm?

  • @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

  • @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 3 роки тому

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

    • @cprn.
      @cprn. 3 роки тому

      @@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

  • @Daviddeppe
    @Daviddeppe 8 місяців тому

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

  • @munivoltarc
    @munivoltarc 8 місяців тому

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

  • @arnavmukherjee5395
    @arnavmukherjee5395 Рік тому

    Very nicely explained. Many Thanks :)

  • @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!

  • @Rieske1969
    @Rieske1969 3 роки тому

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

  • @vinayak254
    @vinayak254 6 місяців тому

    Thank you jim. It is a great video

  • @salarghaffarian9745
    @salarghaffarian9745 2 роки тому

    Thanks for this great instructive Video!

  • @iaroslavdavydiak6439
    @iaroslavdavydiak6439 10 місяців тому

    Awesome explanation! 🔥🔥🔥

  • @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

  • @lucaslannes4004
    @lucaslannes4004 2 роки тому

    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!

  • @verbranntenetzhaut
    @verbranntenetzhaut 2 роки тому

    this video was so good thank you very much!!

  • @harisai-edb
    @harisai-edb Рік тому

    very well explained

  • @stevehageman6785
    @stevehageman6785 9 місяців тому

    Thanks. :-)

  • @lunastela4387
    @lunastela4387 2 роки тому

    verry informative , that helped me alot : )

  • @MrChatmoon
    @MrChatmoon 2 роки тому

    Excellent

  • @CleidsonMachadoDeveloper
    @CleidsonMachadoDeveloper 3 роки тому

    Thanks a lot!

  • @a7medmostafaabuhatab
    @a7medmostafaabuhatab 2 роки тому

    Wow

  • @krishj8011
    @krishj8011 2 роки тому

    nice tutorial..

  • @hakimmitiche5447
    @hakimmitiche5447 4 місяці тому

    That was usefull

  • @systemtrader1
    @systemtrader1 3 роки тому

    Super Video!!!

  • @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 😄

  • @wznzgq1354
    @wznzgq1354 10 місяців тому

    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 роки тому +1

      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.

  • @ebitdaddyca3676
    @ebitdaddyca3676 Рік тому +8

    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!

  • @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!

  • @BirdmanPRRT
    @BirdmanPRRT 3 місяці тому +1

    Great video, thanks for sharing!

  • @lotansuid9604
    @lotansuid9604 3 роки тому +2

    grate video! thats what i look for

  • @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 :)

  • @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

  • @frankhuang5095
    @frankhuang5095 3 роки тому +2

    Such a wonderfully made tutorial! Thanks!

    • @jimshapedcoding
      @jimshapedcoding  3 роки тому

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

  • @lucibright9331
    @lucibright9331 3 роки тому +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  3 роки тому +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 :(

  • @mysteriousXsecret
    @mysteriousXsecret 2 роки тому

    1 is not prime tho

  • @powergladius
    @powergladius Рік тому

    1 is not prime

  • @svenman2139
    @svenman2139 3 роки тому +1

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

  • @VectorRoblox
    @VectorRoblox Рік тому

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

  • @NagasakiNightmare
    @NagasakiNightmare Рік тому

    Thank you for this. I really needed this.

  • @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
      ua-cam.com/users/shortsYlK3oLTp53E

  • @sumanabiswas9096
    @sumanabiswas9096 Рік тому

    Fantastic information

  • @inteligenciaartificiuau
    @inteligenciaartificiuau 8 місяців тому

    Nice! Thanks!

  • @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)

  • @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! :)

  • @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!

  • @LuckyHaboo
    @LuckyHaboo 3 роки тому

    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.

  • @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.

  • @craigleppan7164
    @craigleppan7164 2 роки тому

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

  • @Iqbalsharib4
    @Iqbalsharib4 2 роки тому

    How to do it using OOPS?

  • @benwright1988
    @benwright1988 3 роки тому

    Brilliant video thank you

  • @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

  • @Casanova_999
    @Casanova_999 2 роки тому +1

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

  • @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.

  • @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 :)

  • @anonymot
    @anonymot Рік тому

    Brilliant, keep going