2013年8月1日星期四

python import 自定义的包


目录结构如下:
crawler/
    a.py
admin/
    b.py

现在想要在b.py中导入模块a,首先需要在crawler目录下面新建__init__.py,文件可以为空,然后在程序中加入如下代码:

import sys
sys.path.append("../crawler")#引号中是crawler的路径
import a


这样就可以引入模块a了。

没有评论:

发表评论