Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -51,9 +51,9 @@ def inline_resources(soup, base_url):
|
|
51 |
|
52 |
return soup
|
53 |
|
54 |
-
async def send_html_chunks(websocket,
|
55 |
-
|
56 |
-
|
57 |
tags = soup.find_all(True)
|
58 |
|
59 |
for tag in tags:
|
@@ -61,8 +61,7 @@ async def send_html_chunks(websocket, html):
|
|
61 |
await websocket.send(json.dumps({"type": "chunk", "content": tag_content}))
|
62 |
|
63 |
await websocket.send(json.dumps({"type": "end",}))
|
64 |
-
|
65 |
-
await websocket.send(json.dumps({"type": "error", "message": "Failed to fetch URL"}))
|
66 |
|
67 |
# async def send_html_chunks(ws, html_data, chunk_size=1024):
|
68 |
|
|
|
51 |
|
52 |
return soup
|
53 |
|
54 |
+
async def send_html_chunks(websocket, soup):
|
55 |
+
|
56 |
+
|
57 |
tags = soup.find_all(True)
|
58 |
|
59 |
for tag in tags:
|
|
|
61 |
await websocket.send(json.dumps({"type": "chunk", "content": tag_content}))
|
62 |
|
63 |
await websocket.send(json.dumps({"type": "end",}))
|
64 |
+
|
|
|
65 |
|
66 |
# async def send_html_chunks(ws, html_data, chunk_size=1024):
|
67 |
|