将文件导入其他目录[PYTHON]

时间:2018-11-15 13:15:20

标签: python import interpreter

说我有一个具有以下结构的示例项目:

-app
    -venv (dir)
    -randomPythonFile.py
    -myPythonFiles (dir)
        -helloworld.py

我想导入文件helloworld.py-我知道我必须将目录myPythonFiles添加到我可以轻松完成的解释器路径,但是如何将这些更改推送到git,这样其他人就不必手动添加到他们的路径吗?

1 个答案:

答案 0 :(得分:2)

目录中需要一个__init__.py文件。

from myPythonFiles import helloworld