1

是否可以将配置存储config['webapp2_extras.API']在不同的文件中,然后将其包含在另一个文件中?

伪代码:

# config.py
config['webapp2_extras.API'] = {
  'option' : value,
}

# frontcontroller.py
webapp2.WSGIApplication([
    webapp2.Route('/',handler='MainHandler')
  ], config={{CONFIG_FROM_CONFIG.PY}})

我真的希望能够将我的配置存储在我的前端控制器之外的其他地方!谢谢!

4

2 回答 2

1

您是否尝试过在 frontcontroller.py 中导入配置?例如

# config.py
config['webapp2_extras.API'] = {
  'option' : value,
}

# frontcontroller.py
import config

webapp2.WSGIApplication([
    webapp2.Route('/',handler='MainHandler')
  ], config=config)
于 2013-05-03T15:44:27.150 回答
0

尝试将配置放在与 frontcaller.py 相同的文件夹中

# config.py
config['webapp2_extras.API'] = {
  'option' : value,
}

# frontcontroller.py
from . import config

webapp2.WSGIApplication([
    webapp2.Route('/',handler='MainHandler')
  ], config=config.config)
于 2017-08-03T07:39:25.577 回答