好友
阅读权限10
听众
最后登录1970-1-1
|
本帖最后由 fxm0402 于 2022-9-9 16:20 编辑
灵感来源于大佬 企业微信->微信 的推送方式 (https://www.52pojie.cn/forum.php ... 2%D0%C5%CD%C6%CB%CD)
非常感谢大佬们的付出!
本人因为个人需要写了【疫情】的推送,现在分享给大家!先上效果:
代码图:
[Python] 纯文本查看 复制代码 [/align][align=left]# 疫情[/align][align=left]def get_yiqing():
wushuju = ''
try:
city = '成都' # 修改为你的城市即可
o = 0
url = 'https://api.inews.qq.com/newsqa/v1/query/inner/publish/modules/list?modules=localCityNCOVDataList,diseaseh5Shelf'
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.27'
}
html = requests.post(url)
data1 = html.json()['data']['localCityNCOVDataList']
for i in range(len(data1)):
city1 = (data1[i]['city'])
time1 = (data1[i]['mtime'][0:10])
o = o + 1
if (time1 == dt) and (city1 == city):
xinzenqz = data1[i]['local_confirm_add']
xinzenwzz = data1[i]['local_wzz_add']
city = ('疫情地区:' + data1[i]['city'])
xinzengqz = ('🛌 新增确诊:' + str(xinzenqz))
xinzengwzz = ('🤧 新增无症状:' + str(xinzenwzz))
print('疫情数据更新时间:' + data1[i]['mtime'])
elif (time1 != dt) and (len(data1) == o):
wushuju = ("数据未更新")
yiqing_tip = "🦠 "+ city + "\n" + wushuju + xinzengqz + "\n" + xinzengwzz
return yiqing_tip
except Exception as e:
print("获取疫情数据出错:", e)
return None
有钱的大哥也可以捧个钱场 没有钱的捧个人场
不会的朋友也可以带问题留言!
|
免费评分
-
查看全部评分
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|