You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
blivechat/update.py

32 lines
937 B
Python

# -*- coding: utf-8 -*-
import asyncio
import aiohttp
import utils.async_io
import utils.request
VERSION = 'v1.9.2'
def check_update():
utils.async_io.create_task_with_ref(_do_check_update())
async def _do_check_update():
5 years ago
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('---------------------------------------------')
5 years ago
except aiohttp.ClientConnectionError:
print('Failed to check update: connection failed')
except asyncio.TimeoutError:
print('Failed to check update: timeout')