ebr / utils /http_utils.py
q275343119's picture
init - init project
bf6e4d1
raw
history blame
131 Bytes
import requests
def get(url: str, params: str = None, verify: bool = False):
return requests.get(url, params, verify=verify)