最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Why is python thinking my folder is a module? - Stack Overflow

programmeradmin0浏览0评论

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
  • 2 Where exactly do you think project.script should come from? You show a project.folder1.script but no project.script – Charles Duffy Commented 2 days ago
  • As for whether project exists, where exactly is the sys.path entry that's supposed to find your code pointing? It would need to be pointing above your current project directory to behave as desired -- that's part of why having a src/project in the root of your repository is generally better form, at which point you'd only need to make sure that that src directory is in sys.path (which you could accomplish by putting it in PYTHONPATH) – Charles Duffy Commented 2 days ago
  • 1 Informally speaking, "Package" is a subset of "Module"; the former is just anised by folders. ModuleNotFoundError: 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 ago
  • @CharlesDuffy It was project.folder2, not project.script. I don't know why I put project.script there. – Chompy Commented 2 days ago
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Bot Commented 2 days ago
 |  Show 1 more comment

1 Answer 1

Reset to default 2

As 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:

  1. Clearly the parent of project is not in sys.path
  2. Even if it was, from project.script import ANYTHING is clearly wrong, since you're omitting folder1 from the name, the folder structure means the module is project.folder1.script. Note, if script 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).

发布评论

评论列表(0)

  1. 暂无评论