ethanLeaderboard / utils /http_utils.py
smile
test build
7e055ad
raw
history blame
133 Bytes
import requests
def get(url: str, params: str = None, verify: bool = False):
return requests.get(url, params, verify=verify)