开发者

Use function from Python script in OS path

开发者 https://www.devze.com 2022-12-16 18:37 出处:网络
I have a third-party Python script (foo.py) in a folder that is in my system path (but not the Python sys.path). foo.py is not part of any Python module.

I have a third-party Python script (foo.py) in a folder that is in my system path (but not the Python sys.path). foo.py is not part of any Python module.

I am writing another script (bar.py) in which I'd like to call a function located in foo.py. Is this possible? Can it be done without explicitly naming the folde开发者_如何学编程r of foo.py?

Thanks.


You can include the path of foo.py in the PYTHONPATH environment variable. The interpreter will look also the directories contained there, so you can make the import just like it was on the same directory.


If Python does not find the module, I don't think there's another way then to specify where it can be found, with one easy way being:

import sys
sys.path.append('/myfolder/itsinthisfolder/')

import foo
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号