mirror of
https://github.com/wcbing/wcbing-apt-repo.git
synced 2025-12-28 18:18:31 +08:00
8 lines
242 B
Python
8 lines
242 B
Python
import requests
|
|
from module.check import deb
|
|
|
|
req = requests.get("https://client-webapi.oray.com/softwares/SUNLOGIN_X_LINUX?x64=1")
|
|
version = req.json()["versionno"]
|
|
x64_url = req.json()["downloadurl"]
|
|
|
|
deb("sunloginclient", version, x64_url) |