nvchecker/nvchecker-old/source/simple_json.py
2020-08-11 17:43:03 +08:00

22 lines
630 B
Python

# MIT licensed
# Copyright (c) 2013-2017 lilydjwg <lilydjwg@gmail.com>, et al.
from . import session, conf_cacheable_with_name
def simple_json(urlpat, confkey, version_from_json):
async def get_version(name, conf, **kwargs):
repo = conf.get(confkey) or name
url = urlpat % repo
kwargs = {}
if conf.get('proxy'):
kwargs["proxy"] = conf.get('proxy')
async with session.get(url, **kwargs) as res:
data = await res.json(content_type=None)
version = version_from_json(data)
return version
get_cacheable_conf = conf_cacheable_with_name(confkey)
return get_version, get_cacheable_conf