mirror of
https://github.com/simple64/simple64.git
synced 2026-09-05 03:44:31 +02:00
14 lines
235 B
Python
Executable File
14 lines
235 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import requests
|
|
|
|
|
|
def main():
|
|
resp = requests.get("https://api.github.com/repos/m64p/m64p/releases/latest")
|
|
resp.raise_for_status()
|
|
print(resp.json()["tag_name"])
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|