Commit 9cd6a399 authored by 张彦钊's avatar 张彦钊

add

parent f2f792ea
...@@ -24,13 +24,14 @@ def get_city_names(): ...@@ -24,13 +24,14 @@ def get_city_names():
def name_short(): def name_short():
db = pymysql.connect(host='172.16.30.143', port=3306, user='work', passwd='BJQaT9VzDcuPBqkd', db='zhengxing') db = pymysql.connect(host='172.16.30.143', port=3306, user='work', passwd='BJQaT9VzDcuPBqkd', db='zhengxing')
cursor = db.cursor() cursor = db.cursor()
sql_active = "select name from api_hospital;" sql_active = "select name from api_hospital where is_online = 1;"
cursor.execute(sql_active) cursor.execute(sql_active)
result = cursor.fetchall() result = cursor.fetchall()
name_list = pd.DataFrame(list(result))[0].values.tolist() name_list = pd.DataFrame(list(result))[0].values.tolist()
db.close() db.close()
print(name_list[:10]) print(name_list[:10])
names = ["门诊部","医疗", "门诊", "研究所", "有限", "公司", "医学", "诊所", "中心", "医美", "集团", "卫生", "机构", "专业", names = ["门诊部","医疗", "门诊", "研究所", "有限", "公司", "医学", "诊所", "中心","美容","医院","整形","外科",
"医美", "集团", "卫生", "机构", "专业","皮肤","管理",
"光学", "国际", "连锁", "综合", "专科",] "光学", "国际", "连锁", "综合", "专科",]
location = ["街道", "社区",] location = ["街道", "社区",]
city_list = get_city_names() city_list = get_city_names()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment