import requests
class HTTP:
@staticmethod
def get(surl: object, return_json: object = True) -> object:
r = requests.get(url)
# restful
# json
if r.status_code != 200:
return {} if return_json else ""
return r.json() if return_json else r.text
慕神7238804
慕前端1489887
那就再学
随时随地看视频慕课网APP