requests-获取github某仓库的release的最新版本信息
import requests
response = requests.get("https://api.github.com/repos/[用户名]/[仓库名]/releases/latest")
print(response.json()["tag_name"])
向往的地方很远,喜欢的东西很贵,这就是我努力的目标。
import requests
response = requests.get("https://api.github.com/repos/[用户名]/[仓库名]/releases/latest")
print(response.json()["tag_name"])