2 Star 2 Fork 1

ycc156/stock

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
config.py 536 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhuyoucheng 提交于 2021-04-07 10:39 . // add mysql
# -*- coding: UTF-8 -*-
'''
@Project: yc-stock
@File: config.py
@Notes:
@Author: zhuyoucheng
@Date: 2021/3/20 0020 14:58
'''
DIALECT = 'mysql'
DRIVER = 'pymysql'
USERNAME = 'root'
PASSWORD = 'root'
HOST = '127.0.0.1'
PORT = 3306
DATABASE = 'stock'
#mysql 不会认识utf-8,而需要直接写成utf8
SQLALCHEMY_DATABASE_URI = "{}+{}://{}:{}@{}:{}/{}?charset=utf8".format(DIALECT,DRIVER,USERNAME,PASSWORD,HOST,PORT,DATABASE)
SQLALCHEMY_TRACK_MODIFICATIONS = False
SQLALCHEMY_ECHO = True
ELASTICSEARCH_URL = 'http://172.16.6.62:9200'
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/zhu-youcheng-156/stock.git
git@gitee.com:zhu-youcheng-156/stock.git
zhu-youcheng-156
stock
stock
master

搜索帮助