I have a project structured like this:
project+
|-folder1+
| |-__init__.py
| |-script
|
|-folder2+
| |-__init__.py
| |-folder_3
| |-some_file.py
|
|-__init__.py
I tried to import file into script (which is the file being run) like this:
from project.folder2 import some_file as file
but it failed as:
ModuleNotFoundError: No module named 'project'
This doesn't even make sense, because 'project' should be a package, not a module. How would I do this? Would I need a different approach than that if I wanted to import something from folder_3?
Update: When I made the code I was running into a function, imported script to a file outside of project, and called the function, it worked. However, I do still want to know if there is a way to get it to work with the main file being script, not some file outside of project.
I have a project structured like this:
project+
|-folder1+
| |-__init__.py
| |-script
|
|-folder2+
| |-__init__.py
| |-folder_3
| |-some_file.py
|
|-__init__.py
I tried to import file into script (which is the file being run) like this:
from project.folder2 import some_file as file
but it failed as:
ModuleNotFoundError: No module named 'project'
This doesn't even make sense, because 'project' should be a package, not a module. How would I do this? Would I need a different approach than that if I wanted to import something from folder_3?
Update: When I made the code I was running into a function, imported script to a file outside of project, and called the function, it worked. However, I do still want to know if there is a way to get it to work with the main file being script, not some file outside of project.
Share Improve this question edited 2 days ago Chompy asked 2 days ago ChompyChompy 192 bronze badges New contributor Chompy is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct. 6 | Show 1 more comment1 Answer
Reset to default 2As a matter of terminology, the import messages refer to "modules" even when the import is logically importing a package. Even for a case like from x.y import z
it doesn't know x
, let alone y
, is or is not a package (x
could be a module importing a separate module it calls y
, as with os.path
where os
is a module, importing posixpath
under the alias path
). When it doesn't find it, it can't even know if x
was supposed to be a module or package, because it wasn't found.
Think of "module" as meaning "module or package" in most messages, don't get hung up on minor terminology differences, it's an error message, not a language spec.
As for why it's not found:
- Clearly the parent of
project
is not insys.path
- Even if it was,
from project.script import ANYTHING
is clearly wrong, since you're omittingfolder1
from the name, the folder structure means the module isproject.folder1.script
. Note, ifscript
is a file (true module), not a directory, you named it wrong; it must have a.py
extension to be imported (barring hacking around in the import mechanism to change this default)
Odds are, you want to make a real package and install it (in a virtualenv, with --user
for personal use, whatever) and after installation, it's automatically placed in a site-packages
directory that sys.path
will look in (barring the unusual case when the site
module is not imported).
project.script
should come from? You show aproject.folder1.script
but noproject.script
– Charles Duffy Commented 2 days agoproject
exists, where exactly is thesys.path
entry that's supposed to find your code pointing? It would need to be pointing above your currentproject
directory to behave as desired -- that's part of why having asrc/project
in the root of your repository is generally better form, at which point you'd only need to make sure that thatsrc
directory is insys.path
(which you could accomplish by putting it in PYTHONPATH) – Charles Duffy Commented 2 days agoModuleNotFoundError: No module named 'X'
means Python can't find the source to import. If it can't find the source to import, it will have no way of distinguishing what you're trying to import, other than the fact that it must be a "Module" (or some subset of it). – dROOOze Commented 2 days agoproject.folder2
, notproject.script
. I don't know why I putproject.script
there. – Chompy Commented 2 days ago