我想导入foo-bar.py,这是有效的:

foobar = __import__("foo-bar")

这不是:

from "foo-bar" import *

我的问题:有没有办法,我可以使用上面的格式,即从“foo-bar”导入*导入一个模块,其中有一个- ?


当前回答

如果你不能重命名原始文件,你也可以使用符号链接:

ln -s foo-bar.py foo_bar.py

然后你可以这样做:

from foo_bar import *

其他回答

从Python 3.1开始,你可以使用importlib:

import importlib  
foobar = importlib.import_module("foo-bar")

(https://docs.python.org/3/library/importlib.html)

Python在dash -方面有问题。所以改用importlib。 您可以像这样运行您的测试脚本

# importlib, because python has issues with dash '-' in module names
import importlib
img2txt = importlib.import_module("img2txt-textextractor")

event_with_txt = {...}

event_with_no_txt = {...}


def test_no_text():
    response = img2txt.handler(event=event_with_txt, context='')
    assert response["body"] == '"Detect Me If You Can. "'

def test_detected_text():
    response = img2txt.handler(event=event_with_no_txt, context='')
    assert response["body"] == '"unable to find anything"'

将测试代码命名为test_someName.py。从终端类型-上的相同目录运行

pytest

如果你不能重命名原始文件,你也可以使用符号链接:

ln -s foo-bar.py foo_bar.py

然后你可以这样做:

from foo_bar import *

就像其他人说的,你不能在python命名中使用-,有很多变通办法,如果你必须从一个路径中添加多个模块,一个这样的变通办法会很有用,就是使用sys.path

例如,如果你的结构是这样的:

foo-bar
├── barfoo.py
└── __init__.py

import sys
sys.path.append('foo-bar')

import barfoo

在Python 3.6中 我有同样的问题“无效的语法”时直接

import 'jaro-winkler' as jw

说 "没有名为'jaro-winkler'的模块"

jw = __import__('jaro-winkler')

importlib.import_module()也一样。

最后我用PIP卸载jaro-winkler模块…仅供参考