在运行时从相对路径导入__init__.py

时间:2018-10-09 14:40:25

标签: python python-3.5

我有一个export function playerGroundCheck(event, ground: boolean, r: Platformer) { const pairs = event.pairs; for (let i = 0, j = pairs.length; i != j; ++i) { const pair = pairs[i]; if (pair.bodyA.label === "ground") { r.player.ground = ground; } else if (pair.bodyB.label === "ground") { if ( pair.activeContacts ){ console.log("test : " + pair.activeContacts.length); pair.activeContacts.forEach(element => { console.log("1: " + element.id); }); } r.player.ground = ground; } } } 文件,只包含导入文件:

__init__.py

我想在给定from . import a from . import b # .. 相对路径的情况下,将其加载到另一个脚本中。与

package_dir

我应该能够加载/导入模块。我需要确保的是从import_path = os.path.join(os.path.dirname(__file__), package_dir) 的导入工作。

我该怎么做?

0 个答案:

没有答案