1 Star 0 Fork 1

xfgryujk/blivechat

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
update.py 901 Bytes
一键复制 编辑 原始数据 按行查看 历史
xfgryujk 提交于 2022-03-04 20:28 . 更新版本号v1.6.0
# -*- coding: utf-8 -*-
import asyncio
import aiohttp
import utils.request
VERSION = 'v1.6.0'
def check_update():
asyncio.ensure_future(_do_check_update())
async def _do_check_update():
try:
async with utils.request.http_session.get(
'https://api.github.com/repos/xfgryujk/blivechat/releases/latest'
) as r:
data = await r.json()
if data['name'] != VERSION:
print('---------------------------------------------')
print('New version available:', data['name'])
print(data['body'])
print('Download:', data['html_url'])
print('---------------------------------------------')
except aiohttp.ClientConnectionError:
print('Failed to check update: connection failed')
except asyncio.TimeoutError:
print('Failed to check update: timeout')
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/xfgryujk/blivechat.git
git@gitee.com:xfgryujk/blivechat.git
xfgryujk
blivechat
blivechat
master

搜索帮助