Update run.py
Browse files
run.py
CHANGED
|
@@ -25,6 +25,7 @@ headers = {
|
|
| 25 |
# Send the request using httpx
|
| 26 |
try:
|
| 27 |
response = httpx.get(url, headers=headers, timeout=10)
|
|
|
|
| 28 |
|
| 29 |
if response.status_code == 200:
|
| 30 |
# Decompress if needed
|
|
|
|
| 25 |
# Send the request using httpx
|
| 26 |
try:
|
| 27 |
response = httpx.get(url, headers=headers, timeout=10)
|
| 28 |
+
print(response.text)
|
| 29 |
|
| 30 |
if response.status_code == 200:
|
| 31 |
# Decompress if needed
|