BraydenMoore commited on
Commit
9e765a2
·
1 Parent(s): e732db0

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +1 -1
main.py CHANGED
@@ -68,7 +68,7 @@ def proxy(url):
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'])
 
68
  clean_url = url.replace('proxy/', '')
69
 
70
  try:
71
+ print('\n\nREQUESTING 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'])