You're confusing the term module with what is actually a package in python. Any file with a py extension is a 'module' in python. A collection of py files in a directory along with an __init__ file is a package, not a module
I was looking for init usage and most of the tutorials in the wild were showing importing files just from next to the main python file.Now this is useful.Thanks.
Was stuck on this for almost two days with most solutions on stack overflow and chatgpt suggesting to use absolute paths, instead of this type of relative pathing to import stuff. Finally managed to understand it 😆
Thanks for the video and making the effort. I found it quite difficult to see which files you were editing with the editor. I have rewatched a few times, but its blowing my mind.
Your explaination is soooooo cooooool like your intro! Your explaination made me your fan only in one video, ultra cool bro! I'm glad you have a youtube channel so that I can learn from you!
Making a text based rpg, and really needed a way for stats of enemies to be imported properly. I try not to use videos unless I’m A. Learning something or B. Completely lost and have no idea of the full concept of something.
Is that also possible to import the modules without the "from..."? E.g. with "import functionality" and call the functions with "functionality.add()". In comparison when I import the "math" module I use that method and can call "math.pi" afterwards.
Small programs with a single developer may be able to get away with wildcard imports. In any serious program wildcard imports can introduce hard to find bugs when multiple packages just happen to have the same module name so import order determines which module is actually imported. This is why wildcard imports are a code smell and in truth, just evil. Modern IDEs facilitate explicitly importing the module you want. Please, please get in the habit of avoiding wildcard imports.
This is what I came here hoping to learn. I just spent 2 days dealing with all manner of issues with namespacing in an ultimately vain attempt to keep the test coverage in a discrete folder from the production code.
So just to answer this question for anyone coming across this same curiosity as I have, we apparently have to use the _sys_ module built into python where we can use the sample import function _sys.path.insert(0, '')_
Is there a library I can import that will allow me to read in user input without them having to press enter? Like for a WPM tester for example to see if they had a typo
Yes, but which one depends on your project. For a typing tester in the console you can check out this video from Tech with Tim: ruclips.net/video/NQ5i1kJAA6Y/видео.html Also, you could create something with pygame, which checks continually for input.
Thanks, that clears up several of my problems that other resiurces weren't helping me resolve. I also have a couple of self-made modules that I use in multiple projects. Do you have any tips for how to access them using the environmentsl vafuable PATH or PYTHONPATH?
thanks you for very clear explanation. What about a source module downloaded from github and build by me? It is in a different location, not sub directory.
According to pyinstaller's official documentation " It is not a cross-compiler - to make a Windows app you run PyInstaller on Windows - to make a Linux app you run it on Linux, etc " Any workaround this?
When i try to run my code which is 2 python file inside a folder with all import rules, i am facing __pycache__ and code does not running. I cannot get input some print ext. How can i fix this.
Dude, the practical explanation was very good. In fact, on of the best on yt. But, I think you should have termed the directory containing all those modules as Package. Because, most of the beginners get little confused with term module, package and library. otherwise.... 👍👍
Good stuff! I did notice that if I package everything into a wheel, without adding the classes to the __init__.py I was getting ModuleNotFound errors whenever I used submodules from the package.
I'm using VS Code. I followed pretty well until I got to __all__ = ["second", "third"]. second and third are grizzled underscored with a message ""second" is specified in __all__ but is not present in module Pylance".I'm still searching for a way to make it work. Note : from othermodule import *, second.myfunction() works and I get an Hello anyway but I still don't know why it works if I get errors in my code. Just to add. When I added the from .second import myfunction, from .third import another_function in the init file, under __all__ line, those errors are gone. Thanks for the video, it helps a lot.
Im having trouble with this using gRPC I'm importing with from gRPC.python import * I have an __init__.py in the python directory do I somehow also need one in the gRPC directory which is the parent?.
fyi ~ this did not work for me, yes I had my functions file in the same directory as my blend file, but still I had to add the explicit path as follows, then it worked as shown in video import bpy import system sys.path.append('E:\content\working\latest') from func import testfunc
When the teacher says add every number from to 100 instead of doing this 1 +2+3 Of a text editor and type this total = 0 for num in range(101): total = num + total print(total) It will print the correct answer 5050
most of the time i love python but there's something about the way we do this stuff that really does not compute in my head. the file structure of flask apps in general just doesn't work in my head... i find JS frameworks much more simpler to grasp for god's sake
You're confusing the term module with what is actually a package in python. Any file with a py extension is a 'module' in python. A collection of py files in a directory along with an __init__ file is a package, not a module
It's actually python which made this confusing. JS ESM is so simple
@@PavitraGolchha JS imports may not be the best example of simplicity, due to the competing standards, but I get what you mean
It is kind of confusing. Also a package can be comprised of packages.
I was looking for init usage and most of the tutorials in the wild were showing importing files just from next to the main python file.Now this is useful.Thanks.
Was stuck on this for almost two days with most solutions on stack overflow and chatgpt suggesting to use absolute paths, instead of this type of relative pathing to import stuff.
Finally managed to understand it 😆
yeah if you want to do "real work," chatGPT just crashes.
@@Ridwan-vb8nmI am amazing at debugging because I used ChatGPT to learn to code. I really don't recommend it.
nice. only thing i'd add is that you can import from a parent directory using .., so it would read "from ..parent_directory import y"
But this hasn't worked for me so far. Getting an error citing something about "unspecified parent package"
@authentic_101 there are a few rules you need to stick to. Every directory you import from must have an __init__.py file, for example.
@@aceldama this I tried actually
Unfortunately, this doesn't work for me either.
Nice explanation, best one yet I've seen on modules!
Thanks for the video and making the effort. I found it quite difficult to see which files you were editing with the editor. I have rewatched a few times, but its blowing my mind.
I had the same. The file he is editing is named below (bottom)
As a noob, I've watched this and still have no idea how to add modules, thanks.
Your explaination is soooooo cooooool like your intro! Your explaination made me your fan only in one video, ultra cool bro! I'm glad you have a youtube channel so that I can learn from you!
What if I want to import fourth.py inside second.py and then call second.py from main.py?
In second.py Import Fourth, in main Import Second
maybe 😊
what's your vim setup 👉👈
what does . mean at 8:31?
Making a text based rpg, and really needed a way for stats of enemies to be imported properly. I try not to use videos unless I’m A. Learning something or B. Completely lost and have no idea of the full concept of something.
Is that also possible to import the modules without the "from..."?
E.g. with "import functionality" and call the functions with "functionality.add()".
In comparison when I import the "math" module I use that method and can call "math.pi" afterwards.
Great, but you really tend not to use the star * import, it's generally bad practice as it bloats your namespace with potentially unwanted modules
Small programs with a single developer may be able to get away with wildcard imports. In any serious program wildcard imports can introduce hard to find bugs when multiple packages just happen to have the same module name so import order determines which module is actually imported. This is why wildcard imports are a code smell and in truth, just evil. Modern IDEs facilitate explicitly importing the module you want. Please, please get in the habit of avoiding wildcard imports.
what if our module is in another directory? should we amend the system path?
This is what I came here hoping to learn. I just spent 2 days dealing with all manner of issues with namespacing in an ultimately vain attempt to keep the test coverage in a discrete folder from the production code.
So just to answer this question for anyone coming across this same curiosity as I have, we apparently have to use the _sys_ module built into python where we can use the sample import function _sys.path.insert(0, '')_
Thank you! :) I always learn something new with your videos :D Please keep it up!! Very well done :)
Tutorial on how to setup the environment like yours please
Is there a library I can import that will allow me to read in user input without them having to press enter? Like for a WPM tester for example to see if they had a typo
Yes, but which one depends on your project.
For a typing tester in the console you can check out this video from Tech with Tim:
ruclips.net/video/NQ5i1kJAA6Y/видео.html
Also, you could create something with pygame, which checks continually for input.
@@mables8698 wow this is exactly what I was trying to do thx
What if the module file is not under the project folder. How do you define a totally different path?
Please do a video on different IDE's, pros, cons etc.
Thanks for your great comment.
I can recommend pycharm for python and blueJay for Java
@@Lefthandup but more people especially on YT are using VS Code.
@@404errorpagenotfound.6 Vscode isn't really an IDE it's a text editor
@@stwni what does an IDE do that VS doesn't? It's incredibly popular with YT programmers teaching coding.
@@404errorpagenotfound.6 I’m pretty sure an ide has the advantage of using other peoples libraries etc.
The terms module and package are mixed up! A module is a python file. A package is a collection of python modules!
THIS!! This is exactly what i have been looking for! Thank you so much
Thanks, that clears up several of my problems that other resiurces weren't helping me resolve. I also have a couple of self-made modules that I use in multiple projects. Do you have any tips for how to access them using the environmentsl vafuable PATH or PYTHONPATH?
But why use * in the first place? It's supposed to be an antipattern because of namespacing issues.
Absolutely, yes. Avoid wildcard imports.
thanks you for very clear explanation. What about a source module downloaded from github and build by me? It is in a different location, not sub directory.
this combined with if __name__ == "__main__": would have been the best youtube in history.
Thank you for lesson. But how import from upper module to lower?
According to pyinstaller's official documentation
"
It is not a cross-compiler
- to make a Windows app you run PyInstaller on Windows
- to make a Linux app you run it on Linux, etc
"
Any workaround this?
When i try to run my code which is 2 python file inside a folder with all import rules, i am facing __pycache__ and code does not running. I cannot get input some print ext. How can i fix this.
Thank You Sir. You went into great length to explain this concept.
Thanks for the video. I recommend some daily careful typing practice, btw - so you don't need to constantly correct your typing
any idea why my vs code isnt importing files from the same directory?
One video like this but explaining shared variables between modules I think would be perfect !!
Thank you SO much. This was a difficult concept for me to grasp but so helpful. Your awesome
Learned a new thing. "__all__". Thanks a lot.
Really cool video and explained very clearly. What about making a video on packaging modules for sharing?
Dude, the practical explanation was very good. In fact, on of the best on yt. But, I think you should have termed the directory containing all those modules as Package. Because, most of the beginners get little confused with term module, package and library. otherwise.... 👍👍
Does this work if the folders are in git repo?
I tried to import my own module that uses pandas or yahoo finance. but it did not work. How can i solve it
Quick and simple explanation thank you !
Good stuff! I did notice that if I package everything into a wheel, without adding the classes to the __init__.py I was getting ModuleNotFound errors whenever I used submodules from the package.
Yooo, what is this terminal program and setup, it looks sexy. Thanks for the video!
You didn't talk about having the module not in the same directory and using it.
why we dont have to declare submodule in the init file?
what ui is this??? sorry, new to this
how use linting in neovim using pylint and how to avoid import error
I'm using VS Code. I followed pretty well until I got to __all__ = ["second", "third"]. second and third are grizzled underscored with a message ""second" is specified in __all__ but is not present in module Pylance".I'm still searching for a way to make it work. Note : from othermodule import *, second.myfunction() works and I get an Hello anyway but I still don't know why it works if I get errors in my code. Just to add. When I added the from .second import myfunction, from .third import another_function in the init file, under __all__ line, those errors are gone. Thanks for the video, it helps a lot.
Im having trouble with this using gRPC I'm importing with from gRPC.python import * I have an __init__.py in the python directory do I somehow also need one in the gRPC directory which is the parent?.
all good. but it dont see import pandas as pd in function :(
what is this test editor name?
you saved me a lot of time with this video. thank you. earned my sub
Can you do how to set up PYTHONPATH so that the program can find the modules
fyi ~ this did not work for me, yes I had my functions file in the same directory as my blend file, but still I had to add the explicit path as follows, then it worked as shown in video
import bpy
import system
sys.path.append('E:\content\working\latest')
from func import testfunc
Excellent video! I’m new to python and this is a big help
When the teacher says add every number from to 100 instead of doing this 1 +2+3
Of a text editor and type this
total = 0
for num in range(101):
total = num + total
print(total)
It will print the correct answer 5050
I was import error like they can't be imported from my module
Please make a tutorial on how you set up your neovim environment
I have two already
What is this ide name ? Is it vim ? May you send config ?
can you please put module and code(main) at different folder and access module from code
BROTHER, YOU ARE THE BEST!!! You oooh really helped me!! THANK YOU VERY MUCH!
most of the time i love python but there's something about the way we do this stuff that really does not compute in my head. the file structure of flask apps in general just doesn't work in my head... i find JS frameworks much more simpler to grasp for god's sake
Really informative video. Thanks for recording and sharing it.
very nice explanation. understood everything very clearly
Wow, that was actually pretty easy
Thanks you sir
Thank you very much sir .... This was badly needed...
ah.. why not cover sibling module..
Not clear on package/module/sub-module terminology. A bit confusing.
I am not gonna lie sometimes I get lose in the middle of my code and get confused
Needed exactly this. Trying to add a pre built library to a system where I can't use pip, or setupmodule. I hope this will work.
Thank you so much for this, very clear explanation.
Fantastic explanation.
Excelent job!
Congrats
Very clear explanation Thanks 🎉
thank man u saved my so much time
Thank you this helped me a lot
I have always been told that start imports are bad
GOING Awesome!! Still great!!
Nice video, I have to learn to use vim like you
Very informative. Thank you very much.
I use neovim on KDE Plasma!
It works.
Thank you, really help my project :)
Thanks for the helpful video!
Thanks bro, much love
Impressive. To the point content
thx for this, really helpful
Honestly it was a bit hard to follow due to the strange IDE or whatever. Pretty good tutorial I suppose but presentation was a bit unclear.
Nice tutor!
thanks a lot, solved many problems.
You should have done this in Blender. This is no help at all. You keep saying "don't be confused". Well... you did this in a confusing manner.
Naming everything with the same name and leaving code not used made this very confusing.
Thank you, you explained very clearly
thanks bhai
Using wsl is like a vegan making a vegetable taste like meat 😢
Good info the topic is not well explained in other places even the manual i found was confusing
you are confusing module with packages
could you do a video about a tcp chat room in c? would love to see that
love ur videos
To the point, thanks!
Thanks bro!
you are just amazing
Thanks a lot!
amazing!!