Answers for "how to check for updates from github in python"

0

how to check for updates from github in python

import requests

response = requests.get("https://api.github.com/repos/v2ray/v2ray-core/releases/latest")
print(response.json()["name"])
Posted by: Guest on March-16-2022

Code answers related to "how to check for updates from github in python"

Python Answers by Framework

Browse Popular Code Answers by Language