Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -51,12 +51,17 @@ def inline_resources(soup, base_url):
|
|
51 |
|
52 |
return soup
|
53 |
|
54 |
-
async def send_html_chunks(websocket,
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
|
|
|
|
|
|
|
|
|
|
60 |
|
61 |
# async def send_html_chunks(ws, html_data, chunk_size=1024):
|
62 |
|
|
|
51 |
|
52 |
return soup
|
53 |
|
54 |
+
async def send_html_chunks(websocket,html):
|
55 |
+
|
56 |
+
if html is not None:
|
57 |
+
|
58 |
+
chunk_size = 1024
|
59 |
+
for i in range(0, len(html), chunk_size):
|
60 |
+
chunk = html[i:i + chunk_size]
|
61 |
+
await websocket.send(json.dumps({"type": "chunk", "content": chunk}))
|
62 |
+
await websocket.send(json.dumps({"type": "end", "url": url}))
|
63 |
+
else:
|
64 |
+
await websocket.send(json.dumps({"type": "error", "message": "Failed to fetch URL"}))
|
65 |
|
66 |
# async def send_html_chunks(ws, html_data, chunk_size=1024):
|
67 |
|