11 lines
310 B
Python
11 lines
310 B
Python
# MIT licensed
|
|
# Copyright (c) 2017-2020 lilydjwg <lilydjwg@gmail.com>, et al.
|
|
|
|
URL = 'https://release-monitoring.org/api/project/{pkg}'
|
|
|
|
async def get_version(name, conf, *, cache, **kwargs):
|
|
pkg = conf.get('anitya')
|
|
url = URL.format(pkg = pkg)
|
|
data = await cache.get_json(url)
|
|
return data['version']
|