- #!/usr/bin/env python3
- # -*- coding:utf-8 -*-
- """
- Mysql数据库连接
- """
- MYSQL_HOST = 'rm-t4n6rz18y4t5x47y70o.mysql.singapore.rds.aliyuncs.com'
- MYSQL_PORT = 3036
- MYSQL_DB = 'brand_cultivation'
- MYSQL_USER = 'BrandCultivation'
- MYSQL_PASSWD = '8BfWBc18NBXl#CMd'
|