blivechat/update.py

16 lines
468 B
Python
Raw Normal View History

2019-09-16 20:48:03 +08:00
# -*- coding: utf-8 -*-
import aiohttp
2019-10-13 21:19:33 +08:00
VERSION = 'v1.2.2'
2019-09-16 20:48:03 +08:00
async def check_update():
async with aiohttp.ClientSession() as session:
async with session.get('https://api.github.com/repos/xfgryujk/blivechat/releases/latest') as r:
data = await r.json()
if data['name'] != VERSION:
print('New version available:', data['name'])
print(data['body'])
print('Download:', data['html_url'])