我的文件夹结构是
├── handler
│ ├── s3_handler.py
│
└── service
├── service.py
s3_handler文件包含许多我需要在service.py 中使用的函数
我在试
from handlers.s3_handler import *
但是有一个错误。
Traceback (most recent call last):
File "field_mapping_util.py", line 3, in <module>
from handlers.s3_handler import *
ModuleNotFoundError: No module named 'handlers'
如何解决这个
我想明白了。内部服务.py插入,
import sys
sys.path.append("..")
from handler.s3_handler import *