同步操作将从 cyyz/Cov 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
import timeimport pymysqldef get_time():time_str = time.strftime("%Y{}%m{}%d{} %X")return time_str.format("年","月","日")def get_conn():# 建立连接conn = pymysql.connect(host="###", user="###", password="###", db="cov", charset="utf8")# c创建游标Acursor = conn.cursor()return conn, cursordef close_conn(conn, cursor):if cursor:cursor.close()if conn:conn.close()def query(sql,*args):""":param sql::param args::return:"""conn,cursor = get_conn()cursor.execute(sql,args)res = cursor.fetchall()close_conn(conn,cursor)return resdef test():sql = "select * from details"res = query(sql)return res[0]def get_c1_data():sql = "select sum(confirm)," \"(select suspect from history order by ds desc limit 1)," \"sum(heal),sum(dead) from details " \"where update_time=(select update_time from details order by update_time desc limit 1) "res = query(sql)return res[0]def get_c2_data():sql = "select province,sum(confirm) from details " \"where update_time=(select update_time from details " \"order by update_time desc limit 1) " \"group by province"res = query(sql)return resdef get_l1_data():sql = "select ds,confirm,suspect,heal,dead from history"res = query(sql)return resdef get_l2_data():sql = "select ds,confirm_add,suspect_add from history"res = query(sql)return resdef get_r1_data():sql = 'select city,confirm from ' \'(select city,confirm from details ' \'where update_time=(select update_time from details order by update_time desc limit 1) ' \'and province not in ("湖北","北京","上海","天津","重庆") ' \'union all ' \'select province as city,sum(confirm) as confirm from details ' \'where update_time=(select update_time from details order by update_time desc limit 1) ' \'and province in ("北京","上海","天津","重庆") group by province) as a ' \'order by confirm desc limit 5'res = query(sql)return resdef get_r2_data():sql = "select content from hotsearch order by id desc limit 20"res = query(sql)return resif __name__ == "__main__":print(get_r2_data())#print(test())
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。