Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/mcv/__init__.py
2020-06-13 20:43:43 +08:00

12 lines
No EOL
418 B
Python

import requests
import json
import asyncio
async def mcv():
url = 'http://launchermeta.mojang.com/mc/game/version_manifest.json'
try:
version_manifest = requests.get(url)
file = json.loads(version_manifest.text)
return("最新版:" + file['latest']['release'] + ",最新快照:" + file['latest']['snapshot'])
except Exception:
return("发生错误:土豆熟了。")