我试着在 python3 中加载自定义包 出了点问题
文件结构:
├── handlers │?? ├── adminhandler.py │?? ├── init.py ├── main.py
-------------main.py------------
... from handlers import * ...
------------end----------------
这样引用的
------init.py---------
from adminhandler import IndexHandler, MungedPageHandler
--------end--------
---------adminhandler.py---------
import tornado from tornado import gen
class IndexHandler(tornado.web.RequestHandler): def get(self): self.render('index2.html')
class MungedPageHandler(tornado.web.RequestHandler): def map_by_first_letter(self, text): ....
-----------end-------------------
测试结果 : No module named 'adminhandler'
为什么 我错哪了