Spaces:
Running
Running
Commit
·
e732db0
1
Parent(s):
e77a86f
Update main.py
Browse files
main.py
CHANGED
@@ -66,9 +66,9 @@ def proxy(url):
|
|
66 |
}
|
67 |
|
68 |
clean_url = url.replace('proxy/', '')
|
69 |
-
print('Cleaned URL:', clean_url)
|
70 |
|
71 |
try:
|
|
|
72 |
req = requests.get(clean_url, headers=headers, stream=True, timeout=15)
|
73 |
logging.info(f"Status Code: {req.status_code}, Response Headers: {req.headers}")
|
74 |
return Response(req.iter_content(chunk_size=2048), content_type=req.headers['content-type'])
|
|
|
66 |
}
|
67 |
|
68 |
clean_url = url.replace('proxy/', '')
|
|
|
69 |
|
70 |
try:
|
71 |
+
print('REQUESTING URL:', clean_url)
|
72 |
req = requests.get(clean_url, headers=headers, stream=True, timeout=15)
|
73 |
logging.info(f"Status Code: {req.status_code}, Response Headers: {req.headers}")
|
74 |
return Response(req.iter_content(chunk_size=2048), content_type=req.headers['content-type'])
|