Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kenken999
/
fastapi_django_main_live
like
5
Running
on
Zero
App
Files
Files
Community
c32870d
fastapi_django_main_live
/
routers
/
ai
/
src
/
utils
/
http_client.py
kenken999
teste
b1ce64c
6 months ago
raw
Copy download link
history
blame
155 Bytes
import
requests
class
HttpClient
:
def
get
(
self, url
):
response = requests.get(url)
response.raise_for_status()
return
response