bombsquad-plugin-manager/test/get_latest.py

13 lines
260 B
Python
Raw Normal View History

2024-04-20 04:26:43 +05:30
import json
def get_latest():
with open('index.json', 'r') as file:
content = json.loads(file.read())
latest_version = list(content["versions"].keys())[0]
return latest_version
if __name__ == "__main__":
print(get_latest())