繁星coding
# 数据库配置,参考django框架,采用嵌套的字典实现,真的是很灵活啊 DATABASES = { 'dev':{ 'host' : '129.129.17.203', 'port' : 3306, 'user' : 'dev_test', 'passwd' : 'yotdevkm', 'db' : 't_tatis', 'charset' : 'utf8' }, 'product':{ 'host' : 'localhost', 'port' : 3306, 'user' : 'dev_test', 'passwd' : 'yotdevkm', 'db' : 't_tatis', 'charset' : 'utf8' } }