import pymysql
# DB连接参数
config = {
'host': 'xxx.xx.xx.xxx',
'user': 'xxxx',
'pw': 'xxxxx',
'dbname': 'xxxxx'
}
# 数据库连接
db = pymysql.connect(config['host'], config['user'], config['pw'], config['dbname'], charset='utf8')
# 创建游标,通过连接与数据通信
cursor = db.cursor()
# 执行查询
cursor.execute("SELECT * FROM table_a")
# 使用结束后关闭连接
db.close()