1
0
Fork 0
mirror of https://github.com/kou029w/yama.git synced 2025-01-18 16:08:11 +00:00
yama/bin/version

13 lines
319 B
Text
Raw Permalink Normal View History

2022-05-30 22:39:48 +09:00
#!/usr/bin/env python3
2020-07-21 01:06:43 +09:00
# 最新のバージョンを取得
# Usage: bin/version
2022-05-30 22:39:48 +09:00
from urllib.request import urlopen
import yaml
2021-09-05 15:41:38 +09:00
base = "http://dl-cdn.alpinelinux.org/alpine/latest-stable/releases/armhf"
2022-05-30 22:39:48 +09:00
url = f"{base}/latest-releases.yaml"
res = urlopen(url)
version = yaml.safe_load(res)[0]["version"]
2021-09-05 15:41:38 +09:00
2022-05-30 22:39:48 +09:00
print(version)