Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -54,12 +54,15 @@ def inline_resources(soup, base_url):
|
|
54 |
async def send_html_chunks(websocket, soup):
|
55 |
|
56 |
|
57 |
-
|
|
|
|
|
58 |
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
|
|
63 |
|
64 |
await websocket.send(json.dumps({"type": "end",}))
|
65 |
|
|
|
54 |
async def send_html_chunks(websocket, soup):
|
55 |
|
56 |
|
57 |
+
# Convert the BeautifulSoup object back to a string and split into lines
|
58 |
+
html_str = str(soup)
|
59 |
+
lines = html_str.split('\n')
|
60 |
|
61 |
+
# Send each line as a separate chunk
|
62 |
+
for line in lines:
|
63 |
+
line = line.strip()
|
64 |
+
if line: # Send non-empty lines
|
65 |
+
await websocket.send(json.dumps({"type": "chunk", "content": line}))
|
66 |
|
67 |
await websocket.send(json.dumps({"type": "end",}))
|
68 |
|