This repository has been archived on 2024-09-10. You can view files and clone it, but cannot push or open issues or pull requests.
耿伦伦 481c2f8b6b 1
2021-12-01 17:21:27 +08:00

10 lines
195 B
Python

import requests
from config.helper import config
def getUserinfo(uid):
try:
r = requests.get(config()['api']['userinfo'] + str(uid))
return r.json()
except:
pass