docker_streamlit_rteb / utils /http_utils.py
q275343119's picture
add - init
943f734
raw
history blame
133 Bytes
import requests
def get(url: str, params: str = None, verify: bool = False):
return requests.get(url, params, verify=verify)