def __hello_world(*args, **kwargs):
.....
そして私は試しました
from myfile import __helloworld
非公開のものをインポートできます。
プライベート メソッドをインポートするにはどうすればよいですか?
ありがとう。
現在、単一のアンダースコアを使用しています。
Traceback (most recent call last):
File "test.py", line 10, in <module>
from myfile.ext import _hello_world
ImportError: cannot import name _hello_world
私のtest.pyで
sys.path.insert(0, os.path.abspath(
os.path.join(
os.path.dirname(__file__), os.path.pardir)))
from myfile.ext import _hello_world