Python可视化工具plotly从数据库读取数据作图示例
本人在学习使用Python数据可视化工具plotly的过程中,实际的需求是将数据库中的数据展示出来,经过尝试终于完成了第一步,把数据库某列数据取出来,然后再在本地生成html文件。下面分享一下代码,供大家参考。 #!/usr/bin/python # coding=utf-8 import pymysql import plotly.plotly from plotly.graph_objs import * import plotly.graph_objs as abc # 必须 host = "192.168.10.111" user = "*****" passwd = "*****" db = "api_test" port = 3306 charset = "utf8" # 新建链接 conn = pymysql.connect( host=host, port=port, user=user, passwd=passwd, db=db, charset=charset, ) # 获取链接 cur = conn.cursor() # 执行sql re = cur.execute("SELECT * FROM api_result WHERE api_name = \"/article/list/userfeed\"") # 返回结果 dfs = cur.fetchall(