在comment.py中,导入utils.py中函数
from utils import extract_comment_content, time_fix
#使用时
#直接用名字 如extract_comment_content
或者
import utils
#使用
utils.extract_comment_content
在comment.py中,导入items.py函数
from items import CommentItem
#使用方法类似案例1
红色方框要引入箭头里面的
import sys
sys.path.append('../../config/')
from database import *
print(MYSQL_CONFIG)
使用前先将文件夹调为Source Root
如果你是用pycharm的新建python package,你新建的目录下就会有一个__init__.py文件
你需要在导包的前面加入这样一段代码
import os, sys
current_dir = os.path.abspath(os.path.dirname(__file__))
sys.path.append(current_dir)
然后再导入相应的包,注意要先加上文件名
如:我i的random_walk2是存放在mat2文件夹里,所以我需要先写
from mat2.random_walk2 import RandomWalk